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 0c6e013 commit e795464Copy full SHA for e795464
Web_Workflow_Quickstart/env.py
@@ -14,8 +14,8 @@ def enumerate_toml_files():
14
all_files = os.listdir(SETTINGS_FOLDER)
15
for current_file in all_files:
16
if (
17
- current_file[:2] != "._"
18
- and current_file[-5:] == ".toml"
+ not current_file.startswith("._")
+ and not current_file.endswith(".toml")
19
and current_file != "settings.toml"
20
):
21
found_files.append(SETTINGS_FOLDER + current_file)
0 commit comments