We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c005b2 commit f36122bCopy full SHA for f36122b
pyproject.toml
@@ -82,6 +82,8 @@ disallow_untyped_decorators = true
82
# Third party libraries without type stubs
83
[[tool.mypy.overrides]]
84
module = [
85
+ "simple_httpfs.__init__",
86
+ "simple_httpfs.__main__",
87
"diskcache.*",
88
"fuse.*",
89
]
simple_httpfs/__main__.py
@@ -2,6 +2,7 @@
2
import logging
3
import os.path as op
4
import sys
5
+from typing import Any
6
7
from fuse import FUSE
8
@@ -73,7 +74,7 @@ def main() -> None:
73
74
if args["verbose"]:
75
logger.setLevel(logging.DEBUG)
76
- platform_settings = {}
77
+ platform_settings: dict[str, Any] = {}
78
if sys.platform == "darwin":
79
platform_settings["noapplexattr"] = True
80
platform_settings["noappledouble"] = True
0 commit comments