Skip to content

Commit

Permalink
chore: Fix linter error
Browse files Browse the repository at this point in the history
  • Loading branch information
AdrianoKF committed Mar 28, 2024
1 parent 26efdf9 commit 987f5ca
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/mlstacks/utils/terraform_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,8 @@ def include_files(
filename
for filename in filenames
if not (
# Any subdirectories containing Terraform files (but not, e.g., .terraform)
# Any subdirectories containing Terraform files
# Excludes folders with a leading dot (e.g., .terraform)
(
os.path.isdir(os.path.join(directory, filename))
and not filename.startswith(".")
Expand Down

0 comments on commit 987f5ca

Please sign in to comment.