-
Notifications
You must be signed in to change notification settings - Fork 56
PyFluent dash gui. #470
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
PyFluent dash gui. #470
Conversation
cls.set_flproxy(flproxy) | ||
return cls() | ||
root = cls() | ||
root.set_flproxy(flproxy) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
proxy must be set for each object. Otherwise all sessions will point to same server.
for argument in self.argument_names: | ||
cls = getattr(self.__class__, argument) | ||
setattr(self, argument, cls(None, self)) | ||
self._initialized = True |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Command initialization part was missing. Without this command members can not be accessed.
|
||
_flproxy = None | ||
|
||
@classmethod |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should not be a class method.
"numpy>=1.21.5", | ||
"protobuf==3.20.1", | ||
"appdirs>=1.4.0", | ||
"pandas>=1.4.1" if sys.version_info.minor > 7 else "pandas==1.3.5", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this is equivalent to pandas>=1.3.5
.
Monitors and event streaming related changes.