Skip to content

Commit d8161ba

Browse files
committed
add missing annotation quotes
1 parent 982118c commit d8161ba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

numexpr/expressions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ def get_optimization() -> str:
7777

7878
# helper functions for creating __magic__ methods
7979
def ophelper(f: Callable[..., _T]) -> Callable[..., _T]:
80-
def func(*args: ExpressionNode) -> _T:
80+
def func(*args: 'ExpressionNode') -> _T:
8181
arglist = list(args)
8282
for i, x in enumerate(args):
8383
if isConstant(x):

0 commit comments

Comments
 (0)