Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/ansys/fluent/core/solver/flobject.py
Original file line number Diff line number Diff line change
Expand Up @@ -470,7 +470,7 @@ def _get_parent_of_active_child_names(self, name):

def __getattribute__(self, name):
if name in super().__getattribute__("child_names"):
if not self.is_active():
if self.is_active() is False:
raise RuntimeError(f"'{self.path}' is currently not active")
try:
return super().__getattribute__(name)
Expand Down