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 2dfb84c commit b21bf4eCopy full SHA for b21bf4e
extensions/rcs_fr3/src/rcs_fr3/__init__.py
@@ -1,14 +1,10 @@
1
import sys
2
3
-from rcs_fr3 import desk
+from rcs_fr3 import desk, envs
4
from rcs_fr3._core import hw
5
6
__all__ = [
7
"desk",
8
"hw",
9
+ "envs",
10
]
-
11
-if "pybind11_stubgen" not in sys.modules:
12
- from rcs_panda import envs # noqa: F401
13
14
- __all__.append("envs")
extensions/rcs_panda/src/rcs_panda/__init__.py
@@ -1,13 +1,9 @@
+from rcs_panda import envs
from rcs_panda._core import hw
-# prevent gymnasium import during stubgen, which can cause a segfault
0 commit comments