2021.4.1 #11

Merged
edraft merged 172 commits from 2021.04.01 into 2021.04 2021-03-21 20:04:24 +01:00
Showing only changes of commit 59e111e593 - Show all commits

View File

@ -113,7 +113,7 @@ class Console:
"""
@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
:param string:
@ -125,6 +125,9 @@ class Console:
if cls._is_first_write:
cls._is_first_write = False
if end is None:
end = '\n'
args = []
colored_args = []
if x is not None and y is not None: