diff --git a/shotgun_api3/__init__.py b/shotgun_api3/__init__.py index 98a93b5b..43dd5e29 100644 --- a/shotgun_api3/__init__.py +++ b/shotgun_api3/__init__.py @@ -57,3 +57,20 @@ __version__, ) from .shotgun import SG_TIMEZONE as sg_timezone # noqa unused imports + +# expose imports to avoid linting warnings +__all__ = [ + 'Shotgun', + 'ShotgunError', + 'ShotgunFileDownloadError', + 'ShotgunThumbnailNotReady', + 'Fault', + 'AuthenticationFault', + 'MissingTwoFactorAuthenticationFault', + 'UserCredentialsNotAllowedForSSOAuthenticationFault', + 'ProtocolError', + 'ResponseError', + 'Error', + '__version__', + 'sg_timezone', +]