Skip to content

Commit

Permalink
fix: build config in the proper order
Browse files Browse the repository at this point in the history
  • Loading branch information
guilatrova committed May 20, 2023
1 parent ddcb8bb commit 90863ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tryceratops/filters.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ def create_from_config(cls, config: PyprojectConfig) -> GlobalSettings:
autofix = config.get("autofix", False)
check_pickable = config.get("check_pickable", False)

return cls(experimental, ignore, exclude, autofix, check_pickable)
return cls(experimental, ignore, exclude, check_pickable, autofix)

def overwrite_from_cli(
self,
Expand Down

0 comments on commit 90863ac

Please sign in to comment.