equal
deleted
inserted
replaced
644 @propertycache |
644 @propertycache |
645 def _module(self): |
645 def _module(self): |
646 # Not all installs have the zstd module available. So defer importing |
646 # Not all installs have the zstd module available. So defer importing |
647 # until first access. |
647 # until first access. |
648 try: |
648 try: |
649 from .. import zstd |
649 from .. import zstd # pytype: disable=import-error |
650 |
650 |
651 # Force delayed import. |
651 # Force delayed import. |
652 zstd.__version__ |
652 zstd.__version__ |
653 return zstd |
653 return zstd |
654 except ImportError: |
654 except ImportError: |