Skip to content

Commit

Permalink
fix: always return 0 to complete format task
Browse files Browse the repository at this point in the history
  • Loading branch information
KyleKing committed Feb 18, 2022
1 parent e358fcd commit 19a79df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion calcipy/doit_tasks/lint.py
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ def _gen_format_actions(paths: str) -> List[str]:
f'{run} pycln {paths}',
f'{run} absolufy-imports {paths} --never',
f'{run_mod} isort {paths} --settings-path "{DG.lint.path_isort}"',
f'{run} add-trailing-comma {paths} --py36-plus',
f'{run} add-trailing-comma {paths} --py36-plus --exit-zero-even-if-changed',
]


Expand Down

0 comments on commit 19a79df

Please sign in to comment.