Skip to content

Commit 773dc0c

Browse files
committed
Alphabetize paths so less messy
1 parent 979e429 commit 773dc0c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

exasol/toolbox/config.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -89,13 +89,13 @@ def excluded_python_paths(self) -> tuple[str, ...]:
8989
exclude such undesired paths.
9090
"""
9191
default_excluded_paths = {
92-
"dist",
9392
".eggs",
94-
"venv",
95-
".venv",
93+
".html-documentation",
9694
".poetry",
9795
".sonar",
98-
".html-documentation",
96+
".venv",
97+
"dist",
98+
"venv",
9999
}
100100
return tuple(
101101
default_excluded_paths.union(set(self.add_to_excluded_python_paths))

0 commit comments

Comments
 (0)