fix: fix for shell imported by mistake issue (#76)

This commit is contained in:
Karim shoair
2025-09-02 15:23:15 +03:00
parent e7482a267a
commit af9a62a539
+3 -3
View File
@@ -20,7 +20,6 @@ from logging import (
getLevelName,
)
from IPython.terminal.embed import InteractiveShellEmbed
from orjson import loads as json_loads, JSONDecodeError
from scrapling import __version__
@@ -394,8 +393,7 @@ class CurlParser:
else: # pragma: no cover
log.error("Input must be a valid curl command string or a Request object.")
return None
return None
def show_page_in_browser(page: Selector): # pragma: no cover
@@ -544,6 +542,8 @@ Type 'exit' or press Ctrl+D to exit.
def start(self): # pragma: no cover
"""Start the interactive shell"""
from IPython.terminal.embed import InteractiveShellEmbed
# Get our namespace with application objects
namespace = self.get_namespace()
ipython_shell = InteractiveShellEmbed(