Bugfixes
This commit is contained in:
parent
bfa029f207
commit
59e111e593
@ -113,7 +113,7 @@ class Console:
|
|||||||
"""
|
"""
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def _output(cls, string: str, x: int = None, y: int = None, end='\n'):
|
def _output(cls, string: str, x: int = None, y: int = None, end: str = None):
|
||||||
"""
|
"""
|
||||||
Prints given output with given format
|
Prints given output with given format
|
||||||
:param string:
|
:param string:
|
||||||
@ -125,6 +125,9 @@ class Console:
|
|||||||
if cls._is_first_write:
|
if cls._is_first_write:
|
||||||
cls._is_first_write = False
|
cls._is_first_write = False
|
||||||
|
|
||||||
|
if end is None:
|
||||||
|
end = '\n'
|
||||||
|
|
||||||
args = []
|
args = []
|
||||||
colored_args = []
|
colored_args = []
|
||||||
if x is not None and y is not None:
|
if x is not None and y is not None:
|
||||||
|
Loading…
Reference in New Issue
Block a user