Skip to content

Commit decc9ce

Browse files
committed
Fix import issue in value_nodes.py
MyPy complains that `override` should be imported from the typing_extensions package, but Python docs show that `override` exists in typing as of 3.12.
1 parent a63a51e commit decc9ce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

killerbunny/evaluating/value_nodes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
import json
1313
import logging
1414
from typing import Iterator, Generator
15-
from typing_extensions import override
15+
from typing import override # type: ignore
1616
from killerbunny.evaluating.evaluator_types import EvaluatorValue, NormalizedJPath
1717
from killerbunny.parsing.helper import unescape_string_content
1818
from killerbunny.shared.json_type_defs import JSON_ValueType

0 commit comments

Comments
 (0)