From 90863ac777ef262a9ef2b2d216c7ae05a7cd2190 Mon Sep 17 00:00:00 2001 From: guilatrova Date: Sat, 20 May 2023 06:57:48 -0300 Subject: [PATCH] fix: build config in the proper order --- src/tryceratops/filters.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tryceratops/filters.py b/src/tryceratops/filters.py index e06880e..ac02c00 100644 --- a/src/tryceratops/filters.py +++ b/src/tryceratops/filters.py @@ -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,