Skip to content

Commit

Permalink
fix linting issue
Browse files Browse the repository at this point in the history
  • Loading branch information
bckohan committed Aug 21, 2022
1 parent 374dd38 commit 0440d4f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions render_static/url_tree.py
Original file line number Diff line number Diff line change
Expand Up @@ -416,12 +416,12 @@ def visit_pattern( # pylint: disable=R0914, R0915, R0912
).difference(set(params.keys()))
if unexpected_default_args:
yield '/**'
yield " * Default kwargs, " \
f"{unexpected_default_args}, are not named " \
f"parameters on pattern {endpoint.pattern}."
yield f" * This can cause unexpected behavior " \
f"and is not currently supported for " \
f"reversal."
yield ' * Default kwargs, ' \
f'{unexpected_default_args}, are not named ' \
f'parameters on pattern {endpoint.pattern}.'
yield ' * This can cause unexpected behavior ' \
'and is not currently supported for ' \
'reversal.'
yield '**/'
else:
yield (
Expand Down

0 comments on commit 0440d4f

Please sign in to comment.