diff --git a/bardapi/core.py b/bardapi/core.py index 761016007..6e556e52b 100644 --- a/bardapi/core.py +++ b/bardapi/core.py @@ -476,7 +476,6 @@ def export_replit( "_reqid": str(self._reqid), "rt": "c", } - # refference: https://github.com/jincheng9/markdown_supported_languages support_langs = { "python": "main.py", "javascript": "index.js", @@ -500,6 +499,7 @@ def export_replit( "rust": "main.rs", "perl": "main.pl", } + # Reference: https://github.com/jincheng9/markdown_supported_languages if langcode not in support_langs and filename is None: raise Exception( f"Language {langcode} not supported, please set filename manually."