Skip to content

Commit

Permalink
Remove f-string without placeholders.
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxJPRey committed Jan 3, 2025
1 parent 2ecd216 commit baf275f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ansys/mechanical/core/embedding/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ def __init__(self, db_file=None, private_appdata=False, **kwargs):
version = int(version)
except ValueError:
raise ValueError(
f"The version must be an integer or that can be converted to an integer."
"The version must be an integer or of type that can be converted to an integer."
)
self._version = initializer.initialize(version)
configuration = kwargs.get("config", _get_default_addin_configuration())
Expand Down

0 comments on commit baf275f

Please sign in to comment.