Skip to content

Commit 0e0e970

Browse files
committed
ref: Remove unused code
1 parent 53e100e commit 0e0e970

File tree

2 files changed

+0
-8
lines changed

2 files changed

+0
-8
lines changed

sentry_sdk/client.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
import uuid
33
import random
44
import atexit
5-
import weakref
65
from datetime import datetime
76

87
from ._compat import string_types
@@ -71,8 +70,6 @@ def __init__(self, *args, **kwargs):
7170
)
7271
)
7372

74-
self._exceptions_seen = weakref.WeakKeyDictionary()
75-
7673
atexit.register(self.close)
7774

7875
@property

sentry_sdk/integrations/dedupe.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
import weakref
2-
31
from sentry_sdk.api import configure_scope
42
from sentry_sdk.utils import ContextVar
53

@@ -12,9 +10,6 @@
1210
class DedupeIntegration(Integration):
1311
identifier = "dedupe"
1412

15-
def __init__(self):
16-
self._exceptions_seen = weakref.WeakKeyDictionary()
17-
1813
def install(self):
1914
with configure_scope() as scope:
2015

0 commit comments

Comments
 (0)