File tree 1 file changed +4
-4
lines changed
tagstudio/src/core/query_lang 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:
91
91
}[type (node )](node )
92
92
93
93
@abstractmethod
94
- def visit_ANDList (self , node : ANDList ) -> T : # noqa: N802
94
+ def visit_ANDList (self , node : AST ) -> T : # noqa: N802
95
95
raise NotImplementedError ()
96
96
97
97
@abstractmethod
98
- def visit_ORList (self , node : ORList ) -> T : # noqa: N802
98
+ def visit_ORList (self , node : AST ) -> T : # noqa: N802
99
99
raise NotImplementedError ()
100
100
101
101
@abstractmethod
102
- def visit_Constraint (self , node : Constraint ) -> T : # noqa: N802
102
+ def visit_Constraint (self , node : AST ) -> T : # noqa: N802
103
103
raise NotImplementedError ()
104
104
105
105
@abstractmethod
106
- def visit_Property (self , node : Property ) -> T : # noqa: N802
106
+ def visit_Property (self , node : AST ) -> T : # noqa: N802
107
107
raise NotImplementedError ()
You can’t perform that action at this time.
0 commit comments