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

View File

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