소스 검색

mypy: remove unused "type: ignore" comment

Fabian Peter Hammerle 1 년 전
부모
커밋
b1302c5413
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      free_disk/__init__.py

+ 1 - 1
free_disk/__init__.py

@@ -46,7 +46,7 @@ def _main() -> None:
     argparser.add_argument(
         "--delete-path-regex",
         metavar="REGULAR_EXPRESSION",
-        type=re.compile,  # type: ignore
+        type=re.compile,
         help="Only delete files with path matching regular expression (at any position)."
         " Paths will not be resolved or made absolute before check."
         r" Examples: \.mp4$ or ^/tmp/\d or ^rel/ative/ (default: no filter)",