Skip to content

Commit 7b242c7

Browse files
+ python3.9 test failed fix
1 parent 711a0f3 commit 7b242c7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Python stuff
2-
venv/
2+
venv*/
33
*.pytest_cache
44
__pycache__/
55

src/thread/thread.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ def _handle_exceptions(self) -> None:
150150
raise e
151151

152152

153-
def global_trace(self, frame, event: str, arg) -> Callable | None:
153+
def global_trace(self, frame, event: str, arg) -> Optional[Callable]:
154154
if event == 'call':
155155
return self.local_trace
156156

0 commit comments

Comments
 (0)