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 Apr 29, 2024
1 parent 896fd2f commit f30a547
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions migration_fixer/management/commands/makemigrations.py
Original file line number Diff line number Diff line change
Expand Up @@ -256,9 +256,11 @@ def handle(self, *app_labels, **options):
start_name=conflict_base,
changed_files=sorted_changed_files,
writer=(
lambda m: self.stdout.write(m)
if self.verbosity >= 2
else lambda x: x
lambda m: (
self.stdout.write(m)
if self.verbosity >= 2
else lambda x: x
)
),
)
else: # pragma: no cover
Expand Down

0 comments on commit f30a547

Please sign in to comment.