File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1055,7 +1055,7 @@ def _walk(
10551055 children : Sequence [Optional [_RevisionOrBase ]]
10561056 for _ in range (abs (steps )):
10571057 if steps > 0 :
1058- assert initial != "base" # type: ignore[comparison-overlap]
1058+ assert initial != "base"
10591059 # Walk up
10601060 walk_up = [
10611061 is_revision (rev )
@@ -1069,7 +1069,7 @@ def _walk(
10691069 children = walk_up
10701070 else :
10711071 # Walk down
1072- if initial == "base" : # type: ignore[comparison-overlap]
1072+ if initial == "base" :
10731073 children = ()
10741074 else :
10751075 children = self .get_revisions (
Original file line number Diff line number Diff line change @@ -151,7 +151,6 @@ strict = true
151151[[tool .mypy .overrides ]]
152152module = [
153153 ' mako.*' ,
154- ' sqlalchemy.testing.*'
155154]
156155ignore_missing_imports = true
157156
You can’t perform that action at this time.
0 commit comments