Skip to content

Commit 8f90d75

Browse files
Delete unused method
1 parent 81f6b46 commit 8f90d75

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

src/ansys/aedt/core/application/variables.py

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1505,18 +1505,6 @@ def __has_definition_parameters(self):
15051505
def _oo(self, obj, path):
15061506
return self._app.get_oo_object(obj, path)
15071507

1508-
@staticmethod
1509-
def __with_retries(func, n_times=10):
1510-
"""Retry a no-arg callable up to and return its result or None."""
1511-
for _ in range(max(1, n_times)):
1512-
try:
1513-
out = func()
1514-
if out:
1515-
return out
1516-
except Exception:
1517-
pass
1518-
return None
1519-
15201508
# Low-level property read/write
15211509
@pyaedt_function_handler()
15221510
def update_var(self):

0 commit comments

Comments
 (0)