Skip to content

Commit

Permalink
fix: fix the Decimal export from pyrfc
Browse files Browse the repository at this point in the history
  • Loading branch information
bsrdjan committed Apr 17, 2023
1 parent 3f64218 commit b9e76cb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pyrfc/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
# Set DLL path, per https://docs.python.org/3.8/whatsnew/3.8.html#bpo-36085-whatsnew

import os
from .version import __version_info__, __version__

if os.name == "nt":
try:
Expand Down Expand Up @@ -41,6 +42,7 @@
language_iso_to_sap,
language_sap_to_iso,
Connection,
Decimal,
Throughput,
TypeDescription,
FunctionDescription,
Expand All @@ -59,5 +61,3 @@

__author__ = "SAP SE"
__email__ = "srdjan.boskovic@sap.com"
__version_info__ = (2, 7, 3)
__version__ = ".".join(str(i) for i in __version_info__)
2 changes: 2 additions & 0 deletions src/pyrfc/version.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
__version_info__ = (2, 7, 3)
__version__ = ".".join(str(i) for i in __version_info__)

0 comments on commit b9e76cb

Please sign in to comment.