Skip to content

Commit ed33305

Browse files
committed
workflow trigger
1 parent bb6ecb3 commit ed33305

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

hyperpyyaml/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -719,7 +719,7 @@ def _ast_eval(node):
719719

720720
# Compatibility check for Python versions
721721
# In Python 3.8, ast.Num was deprecated and replaced by ast.Constant.
722-
if sys.version_info >= (3, 8):
722+
if sys.version_info >= (3, 8):
723723
if isinstance(node, ast.Constant): # <number>, <string>, <bool>, <None>
724724
return node.value
725725
else:

0 commit comments

Comments
 (0)