Update Web_Workflow_Quickstart/env.py
Co-authored-by: Dan Halbert <halbert@halwitz.org>
This commit is contained in:
parent
0c6e013bce
commit
e795464e7d
1 changed files with 2 additions and 2 deletions
|
|
@ -14,8 +14,8 @@ def enumerate_toml_files():
|
|||
all_files = os.listdir(SETTINGS_FOLDER)
|
||||
for current_file in all_files:
|
||||
if (
|
||||
current_file[:2] != "._"
|
||||
and current_file[-5:] == ".toml"
|
||||
not current_file.startswith("._")
|
||||
and not current_file.endswith(".toml")
|
||||
and current_file != "settings.toml"
|
||||
):
|
||||
found_files.append(SETTINGS_FOLDER + current_file)
|
||||
|
|
|
|||
Loading…
Reference in a new issue