Skip to content

Commit

Permalink
Fix operator syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
marians committed Dec 13, 2024
1 parent c89bb55 commit 38f5605
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/validate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ jobs:
for root, dirs, files in os.walk(content_dir):
for file in files:
full_path = Path(root, file)
if full_path.suffix.lower() !== '.md':
if full_path.suffix.lower() != '.md':
continue
if not allowed_chars.match(full_path.stem):
errors.append(f"- File name {full_path}' contains invalid characters. Only lowercase letters, digits, and hyphens are allowed.\n")
Expand Down

0 comments on commit 38f5605

Please sign in to comment.