Skip to content

Commit 1fc9b74

Browse files
committed
Fix absence of LazyConfig
See the exception below Traceback (most recent call last): File "/media/poetry/virtualenvs/beets-yAypcYUQ-py3.9/bin/beet", line 3, in <module> from beets.ui import main File "/home/sarunas/repo/beets/beets/__init__.py", line 39, in <module> class IncludeLazyConfig(confuse.LazyConfig): AttributeError: module 'confuse' has no attribute 'LazyConfig'
1 parent da3b251 commit 1fc9b74

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

confuse/core.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,7 @@
1919

2020
__all__ = [
2121
'CONFIG_FILENAME', 'DEFAULT_FILENAME', 'ROOT_NAME', 'REDACTED_TOMBSTONE',
22-
'ConfigView', 'RootView', 'Subview', 'Configuration',
23-
'ConfigSource', 'EnvSource', 'YamlSource',
24-
'ConfigTypeError', 'NotFoundError', 'ConfigError',
22+
'ConfigView', 'RootView', 'Subview', 'Configuration', 'LazyConfig'
2523
]
2624

2725
import errno

0 commit comments

Comments
 (0)