diff --git a/duties.py b/duties.py index 381633d..94d8671 100644 --- a/duties.py +++ b/duties.py @@ -51,7 +51,7 @@ def fmt(ctx: Context): Args: ctx (Context): the context instance (passed automatically). """ - ctx.run("isort .", title="Sorting imports") + ctx.run("isort --ca --profile=black .", title="Sorting imports") ctx.run("black .", title="Formatting code")