Skip to content

Commit

Permalink
refactor: release 3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
bsrdjan committed Sep 29, 2023
1 parent 1751a31 commit 7933333
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/server/tlog.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def parse_line(self, line):
raise Exception(f"TLOG line format invalid: '{line}'")

def getTIDs(self, tids=None):
if type(tids) == str:
if isinstance(tids,str):
tids = [tids]
elif tids is None:
tids = []
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "pyrfc"
version = "3.1"
version = "3.2"
readme = "README.md"
license = { file = "LICENSES/Apache-2.0.txt" }
description = "Python bindings for SAP NetWeaver RFC SDK"
Expand Down

0 comments on commit 7933333

Please sign in to comment.