Skip to content

Commit

Permalink
Removed missing references.
Browse files Browse the repository at this point in the history
  • Loading branch information
mmcdermott committed Sep 24, 2024
1 parent 734b590 commit a1975d8
Showing 1 changed file with 1 addition and 28 deletions.
29 changes: 1 addition & 28 deletions src/mixins/__init__.py
Original file line number Diff line number Diff line change
@@ -1,31 +1,4 @@
from .debuggable import DebuggableMixin
from .multiprocessingable import MultiprocessingMixin
from .saveable import SaveableMixin
from .seedable import SeedableMixin
from .swapcacheable import SwapcacheableMixin
from .timeable import TimeableMixin

__all__ = [
"DebuggableMixin",
"MultiprocessingMixin",
"SaveableMixin",
"SeedableMixin",
"SwapcacheableMixin",
"TimeableMixin",
]

# Tensorable and Tqdmable rely on packages that may or may not be installed.

try:
from .tensorable import TensorableMixin # noqa

__all__.append("TensorableMixin")
except ImportError:
pass

try:
from .tqdmable import TQDMableMixin # noqa

__all__.append("TQDMableMixin")
except ImportError:
pass
__all__ = ["SeedableMixin", "TimeableMixin"]

0 comments on commit a1975d8

Please sign in to comment.