We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dfc0ead commit eb70132Copy full SHA for eb70132
1 file changed
control/__init__.py
@@ -70,6 +70,11 @@
70
# Import functions from within the control system library
71
# Note: the functions we use are specified as __all__ variables in the modules
72
73
+# don't warn about `import *`
74
+# ruff: noqa: F403
75
+# don't warn about unknown names; they come `import *`
76
+# ruff: noqa: F405
77
+
78
# Input/output system modules
79
from .iosys import *
80
from .nlsys import *
@@ -106,8 +111,8 @@
106
111
from .sysnorm import *
107
112
108
113
# Allow access to phase_plane functions as ct.phaseplot.fcn or ct.pp.fcn
109
-from . import phaseplot
110
-from . import phaseplot as pp
114
+from . import phaseplot as phaseplot
115
+pp = phaseplot
116
117
# Exceptions
118
from .exception import *
0 commit comments