Skip to content

Commit

Permalink
chore: 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 Nov 19, 2022
1 parent 54ce25c commit 7063b41
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/ansiblelint/schemas/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,9 @@ def refresh_schemas(min_age_seconds: int = 3600 * 24) -> int:
if min_age_seconds < age:
return 0
if not os.access(store_file, os.W_OK):
_logger.debug("Skipping schema update due to lack of writing rights on %s", store_file)
_logger.debug(
"Skipping schema update due to lack of writing rights on %s", store_file
)
return 0
_logger.debug("Checking for updated schemas...")

Expand Down

0 comments on commit 7063b41

Please sign in to comment.