Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Feb 13, 2025
1 parent 789170a commit ea08ad0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/doc8/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,9 @@ def validate(cfg, files, result=None):
f = files.popleft()
if cfg.get("verbose"):
print("Validating %s" % f)
targeted_ignoreables = set(ignore_targeted.get(os.path.abspath(f.filename), set()))
targeted_ignoreables = set(
ignore_targeted.get(os.path.abspath(f.filename), set())
)
targeted_ignoreables.update(ignoreables)
for c in fetch_checks(cfg):
check_name = ".".join([c.__class__.__module__, c.__class__.__name__])
Expand Down

0 comments on commit ea08ad0

Please sign in to comment.