Skip to content

Commit 7933333

Browse files
committed
refactor: release 3.2
1 parent 1751a31 commit 7933333

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

examples/server/tlog.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ def parse_line(self, line):
7777
raise Exception(f"TLOG line format invalid: '{line}'")
7878

7979
def getTIDs(self, tids=None):
80-
if type(tids) == str:
80+
if isinstance(tids,str):
8181
tids = [tids]
8282
elif tids is None:
8383
tids = []

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "pyrfc"
7-
version = "3.1"
7+
version = "3.2"
88
readme = "README.md"
99
license = { file = "LICENSES/Apache-2.0.txt" }
1010
description = "Python bindings for SAP NetWeaver RFC SDK"

0 commit comments

Comments
 (0)