Skip to content

Commit 4d60acb

Browse files
authored
Remove usage of removeprefix and bump version 0.18.dev2 (#2065)
* Remove usage of removeprefix * Bump version 0.18.dev2 * Remove usage of removeprefix
1 parent 515b07d commit 4d60acb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/ansys/fluent/core/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"""
77

88
# major, minor, patch
9-
version_info = 0, 18, "dev1"
9+
version_info = 0, 18, "dev2"
1010

1111
# Nice string for the version
1212
__version__ = ".".join(map(str, version_info))

src/ansys/fluent/core/services/api_upgrade.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,4 @@ def __exit__(self, exc_type, exc_value, exc_tb):
3838
print(
3939
"The following solver settings object method could also be used to execute the above command:"
4040
)
41-
print(f"<solver_session>.{journal_str.removeprefix('solver.')}")
41+
print(f"<solver_session>.{journal_str[len('solver.'):]}")

0 commit comments

Comments
 (0)