Skip to content

Commit b9e76cb

Browse files
committed
fix: fix the Decimal export from pyrfc
1 parent 3f64218 commit b9e76cb

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/pyrfc/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
# Set DLL path, per https://docs.python.org/3.8/whatsnew/3.8.html#bpo-36085-whatsnew
99

1010
import os
11+
from .version import __version_info__, __version__
1112

1213
if os.name == "nt":
1314
try:
@@ -41,6 +42,7 @@
4142
language_iso_to_sap,
4243
language_sap_to_iso,
4344
Connection,
45+
Decimal,
4446
Throughput,
4547
TypeDescription,
4648
FunctionDescription,
@@ -59,5 +61,3 @@
5961

6062
__author__ = "SAP SE"
6163
__email__ = "srdjan.boskovic@sap.com"
62-
__version_info__ = (2, 7, 3)
63-
__version__ = ".".join(str(i) for i in __version_info__)

src/pyrfc/version.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
__version_info__ = (2, 7, 3)
2+
__version__ = ".".join(str(i) for i in __version_info__)

0 commit comments

Comments
 (0)