diff --git a/src/google_crc32c/_checksum.py b/src/google_crc32c/_checksum.py index fa299c7cc..517674670 100644 --- a/src/google_crc32c/_checksum.py +++ b/src/google_crc32c/_checksum.py @@ -24,6 +24,7 @@ class CommonChecksum(object): initial_value (Optional[bytes]): the initial chunk of data from which the CRC32C checksum is computed. Defaults to b''. """ + __slots__ = () def __init__(self, initial_value=b""): self._crc = 0