Skip to content

Commit 3757174

Browse files
committed
fix: change sympy mappings ordering
1 parent 871a710 commit 3757174

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pysr/export_sympy.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,8 @@ def pysr2sympy(
8888
feature_names_in = []
8989
local_sympy_mappings = {
9090
**create_sympy_symbols_map(feature_names_in),
91-
**(extra_sympy_mappings if extra_sympy_mappings is not None else {}),
9291
**sympy_mappings,
92+
**(extra_sympy_mappings if extra_sympy_mappings is not None else {}),
9393
}
9494

9595
try:

0 commit comments

Comments
 (0)