From 030345fe6b669225b9056d08f910d8e878e3ac22 Mon Sep 17 00:00:00 2001 From: Gregoo Date: Fri, 31 Jan 2025 16:37:42 +0100 Subject: [PATCH] Fix functions definition --- bricktracker/set_list.py | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/bricktracker/set_list.py b/bricktracker/set_list.py index 6a94185..e071dc6 100644 --- a/bricktracker/set_list.py +++ b/bricktracker/set_list.py @@ -103,12 +103,7 @@ class BrickSetList(BrickRecordList[BrickSet]): return self # Sets missing a part - def missing_part( - self, - part: str, - color: int, - / - ) -> Self: + def missing_part(self, part: str, color: int, /) -> Self: # Save the parameters to the fields self.fields.part = part self.fields.color = color @@ -141,12 +136,7 @@ class BrickSetList(BrickRecordList[BrickSet]): return self # Sets using a part - def using_part( - self, - part: str, - color: int, - / - ) -> Self: + def using_part(self, part: str, color: int, /) -> Self: # Save the parameters to the fields self.fields.part = part self.fields.color = color