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 bb1599f commit f116bd8Copy full SHA for f116bd8
packages/core/src/robotcode/core/utils/glob_path.py
@@ -1,3 +1,5 @@
1
+# mypy: warn_unused_ignores=false
2
+
3
from __future__ import annotations
4
5
import functools
@@ -102,7 +104,7 @@ def _is_hidden(entry: os.DirEntry[str]) -> bool:
102
104
return True
103
105
106
if os.name == "nt" and (
- entry.stat().st_file_attributesa & 2 != 0 or entry.name.startswith("$") # type: ignore[attr-defined]
107
+ entry.stat().st_file_attributes & 2 != 0 or entry.name.startswith("$") # type: ignore[attr-defined]
108
):
109
110
0 commit comments