Merge pull request #12143 from tobiasge/fix-missing-s3backend

Fixes #12142: Add S3Backend to __all__
This commit is contained in:
kkthxbye 2023-04-02 22:28:08 +02:00 committed by GitHub
commit e4b2d87ce6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -20,6 +20,7 @@ from .exceptions import SyncError
__all__ = (
'LocalBackend',
'GitBackend',
'S3Backend',
)
logger = logging.getLogger('netbox.data_backends')