Skip to content

Commit 588b592

Browse files
Remove or operator in type hint since only supported in py3.10+.
1 parent 2b7b7c7 commit 588b592

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

datajoint/table.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -462,7 +462,7 @@ def delete_quick(self, get_count=False):
462462
def delete(
463463
self,
464464
transaction: bool = True,
465-
safemode: bool | None = None,
465+
safemode: bool = None,
466466
force_parts: bool = False,
467467
) -> int:
468468
"""

0 commit comments

Comments
 (0)