Skip to content

Commit

Permalink
chore: removing f-string format
Browse files Browse the repository at this point in the history
  • Loading branch information
germa89 committed Sep 24, 2024
1 parent d092bb3 commit 14a8bcd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ansys/mapdl/core/mapdl_geometry.py
Original file line number Diff line number Diff line change
Expand Up @@ -596,7 +596,7 @@ def get_areas(
"""
if not isinstance(quality, int) or (quality > 10 or quality < 1):

Check warning on line 597 in src/ansys/mapdl/core/mapdl_geometry.py

View check run for this annotation

Codecov / codecov/patch

src/ansys/mapdl/core/mapdl_geometry.py#L597

Added line #L597 was not covered by tests
raise ValueError(
f"The argument 'quality' can only be an integer between 1 and 10 (both included)."
"The argument 'quality' can only be an integer between 1 and 10 (both included)."
)

surf = self.generate_surface(11 - quality)
Expand Down

0 comments on commit 14a8bcd

Please sign in to comment.