File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
tagstudio/src/core/query_lang Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -91,17 +91,17 @@ def visit(self, node: AST) -> T:
9191 }[type (node )](node )
9292
9393 @abstractmethod
94- def visit_ANDList (self , node : ANDList ) -> T : # noqa: N802
94+ def visit_ANDList (self , node : AST ) -> T : # noqa: N802
9595 raise NotImplementedError ()
9696
9797 @abstractmethod
98- def visit_ORList (self , node : ORList ) -> T : # noqa: N802
98+ def visit_ORList (self , node : AST ) -> T : # noqa: N802
9999 raise NotImplementedError ()
100100
101101 @abstractmethod
102- def visit_Constraint (self , node : Constraint ) -> T : # noqa: N802
102+ def visit_Constraint (self , node : AST ) -> T : # noqa: N802
103103 raise NotImplementedError ()
104104
105105 @abstractmethod
106- def visit_Property (self , node : Property ) -> T : # noqa: N802
106+ def visit_Property (self , node : AST ) -> T : # noqa: N802
107107 raise NotImplementedError ()
You can’t perform that action at this time.
0 commit comments