We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 05e68cf + 90c76fc commit e226304Copy full SHA for e226304
src/jsonchain/__init__.py
@@ -2,7 +2,7 @@
2
A small package to aid in the use of the chaining techniques taught by Structural Python
3
"""
4
5
-__version__ = "0.4.1"
+__version__ = "0.4.2"
6
7
8
from .io import (load_json, dump_json)
src/jsonchain/envelope.py
@@ -101,4 +101,4 @@ def abs(x: float | int | None) -> float | int | None:
101
102
if x is None:
103
return x
104
- return abs(x)
+ return PYABS(x)
0 commit comments