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 5b7c393 commit 7a8b516Copy full SHA for 7a8b516
lab.py
@@ -1,3 +1,3 @@
1
import gymlib
2
3
-print(gymlib.magic.get_magic_number())
+print(gymlib.magic.get_magic_number())
scripts/mypy.sh
@@ -1,3 +1,4 @@
#!/bin/bash
# Ignore agents/ because those are all submodules.
-mypy --config-file scripts/configs/mypy.ini . --exclude agents/
+# Ignore gymlib_package/build/ to avoid the error of mypy finding two gymlib packages.
4
+mypy --config-file scripts/configs/mypy.ini . --exclude agents/ --exclude gymlib_package/build/
0 commit comments