Skip to content

Commit cad09fa

Browse files
fix bug in clear command
1 parent fb62e87 commit cad09fa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/module_interpreter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from __main__ import * # import all stuff in the program namespace
22
from utilities.color import * # import colors function
33
from core.banner import Banner # import banner
4-
from utilities import screen_cleaner # import screen cleaner == clear command in unix and unix like system
4+
from utilities.screen_cleaner import clear # import screen cleaner == clear command in unix and unix like system
55
from core.module_obtainer import obtainer # import module_obtainer package
66
from imp import reload # import reload function from importlib lib
77
import core.interpreter, readline # import main interpreter

0 commit comments

Comments
 (0)