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 f548714Copy full SHA for f548714
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