diff --git a/codeflash/languages/registry.py b/codeflash/languages/registry.py index 174a7d21d..17c2539a7 100644 --- a/codeflash/languages/registry.py +++ b/codeflash/languages/registry.py @@ -47,19 +47,6 @@ def _ensure_languages_registered() -> None: # Import support modules to trigger registration # These imports are deferred to avoid circular imports - import contextlib - - with contextlib.suppress(ImportError): - from codeflash.languages.python import support as _ - - with contextlib.suppress(ImportError): - from codeflash.languages.javascript import support as _ - - with contextlib.suppress(ImportError): - from codeflash.languages.java import support as _ - - with contextlib.suppress(ImportError): - from codeflash.languages.java import support as _ # noqa: F401 _languages_registered = True