mercurial/pathutil.py
changeset 51282 9d3721552b6c
parent 50925 d718eddf01d9
child 51284 f15cb5111a1e
--- a/mercurial/pathutil.py	Wed Nov 08 01:58:16 2023 +0100
+++ b/mercurial/pathutil.py	Wed Dec 20 12:51:20 2023 +0100
@@ -23,6 +23,14 @@
 rustdirs = policy.importrust('dirstate', 'Dirs')
 parsers = policy.importmod('parsers')
 
+# keeps pyflakes happy
+assert [
+    Any,
+    Callable,
+    Iterator,
+    Optional,
+]
+
 
 def _lowerclean(s):
     # type: (bytes) -> bytes