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 a9e9c02 commit bb1599fCopy full SHA for bb1599f
packages/core/src/robotcode/core/utils/glob_path.py
@@ -101,7 +101,9 @@ def _is_hidden(entry: os.DirEntry[str]) -> bool:
101
if entry.name.startswith("."):
102
return True
103
104
- if os.name == "nt" and (entry.stat().st_file_attributes & 2 != 0 or entry.name.startswith("$")):
+ if os.name == "nt" and (
105
+ entry.stat().st_file_attributesa & 2 != 0 or entry.name.startswith("$") # type: ignore[attr-defined]
106
+ ):
107
108
109
return False
0 commit comments