Browse Source

ref: fix exports in sentry.options (#50601)

<!-- Describe your PR here. -->
anthony sottile 1 year ago
parent
commit
5f1985a16c
1 changed files with 9 additions and 6 deletions
  1. 9 6
      src/sentry/options/__init__.py

+ 9 - 6
src/sentry/options/__init__.py

@@ -24,16 +24,19 @@ from .manager import (  # NOQA
 from .store import OptionsStore
 
 __all__ = (
+    "FLAG_AUTOMATOR_MODIFIABLE",
+    "NotWritableReason",
+    "UnknownOption",
+    "UpdateChannel",
     "can_update",
-    "get",
-    "set",
+    "default_store",
     "delete",
-    "register",
+    "get",
+    "get_last_update_channel",
     "isset",
     "lookup_key",
-    "UnknownOption",
-    "default_store",
-    "get_last_update_channel",
+    "register",
+    "set",
 )
 
 # See notes in ``runner.initializer`` regarding lazy cache configuration.