Skip to content

Commit e226304

Browse files
Merge pull request #14 from StructuralPython/fixes/incorrect_abs_function
bump version
2 parents 05e68cf + 90c76fc commit e226304

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/jsonchain/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
A small package to aid in the use of the chaining techniques taught by Structural Python
33
"""
44

5-
__version__ = "0.4.1"
5+
__version__ = "0.4.2"
66

77

88
from .io import (load_json, dump_json)

src/jsonchain/envelope.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,4 +101,4 @@ def abs(x: float | int | None) -> float | int | None:
101101
"""
102102
if x is None:
103103
return x
104-
return abs(x)
104+
return PYABS(x)

0 commit comments

Comments
 (0)