We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3fbdc7f commit 8e6f3bbCopy full SHA for 8e6f3bb
tidy3d/components/microwave/base.py
@@ -14,3 +14,8 @@ def _default_without_license_warning(cls) -> MicrowaveBaseModel:
14
"""Internal helper factory function for classes inheriting from ``MicrowaveBaseModel``."""
15
if config.microwave.suppress_rf_license_warning is True:
16
return cls()
17
+ else:
18
+ config.microwave.suppress_rf_license_warning = True
19
+ default_constructed = cls()
20
+ config.microwave.suppress_rf_license_warning = False
21
+ return default_constructed
0 commit comments