We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 04d2596 commit 5ab4295Copy full SHA for 5ab4295
sentry_sdk/feature_flags.py
@@ -45,8 +45,8 @@ def get(self):
45
def set(self, flag, result):
46
# type: (str, bool) -> None
47
if isinstance(result, FlagBuffer):
48
- # If someone were to `self` in `self` this would create a circular dependency on
49
- # the lock. This is of course a deadlock. However, this is far outside the expected
+ # If someone were to insert `self` into `self` this would create a circular dependency
+ # on the lock. This is of course a deadlock. However, this is far outside the expected
50
# usage of this class. We guard against it here for completeness and to document this
51
# expected failure mode.
52
raise ValueError(
0 commit comments