Skip to content

Commit 7295722

Browse files
committed
Fixing style.
1 parent 094b275 commit 7295722

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/ansys/mapdl/core/mapdl_grpc.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1577,11 +1577,13 @@ def _get(self, entity, entnum, item1, it1num, item2, it2num):
15771577
self._get_lock = False
15781578

15791579
if getresponse.type == 0:
1580-
self._log.debug("The 'grpc' get method seems to have failed. Trying old implementation for more verbose output.")
1580+
self._log.debug(
1581+
"The 'grpc' get method seems to have failed. Trying old implementation for more verbose output."
1582+
)
15811583
try:
15821584
out = self.run("*GET,__temp__," + cmd)
15831585
except MapdlRuntimeError:
1584-
# Get can thrown some errors, in that case, they are catched in the default run method.
1586+
# Get can thrown some errors, in that case, they are caught in the default run method.
15851587
raise
15861588
else:
15871589
# Here we catch the rest of the errors and warnings

0 commit comments

Comments
 (0)