Remove custom code path when run under type checking.

PiperOrigin-RevId: 487584485
Change-Id: I1b1c773240bb033e50205648f4611f4702c0e6e8
This commit is contained in:
Saran Tunyasuvunakool
2022-11-10 10:55:49 -08:00
committed by Copybara-Service
parent fd139276bc
commit 985b3f1c9e
-5
View File
@@ -21,7 +21,6 @@ import math
import os
import threading
import time
import typing
from typing import Callable, Optional
import glfw
@@ -225,10 +224,6 @@ def launch(model: Optional[mujoco.MjModel] = None,
def launch_repl(model: mujoco.MjModel, data: mujoco.MjData) -> None:
"""EXPERIMENTAL FEATURE: Launches the Simulate GUI in REPL mode."""
if typing.TYPE_CHECKING:
launch(model, data, run_physics_thread=False)
return
try:
import IPython # pylint: disable=g-import-not-at-top
has_ipython = True