2021.04.03 - Readme #18

Merged
edraft merged 231 commits from refs/pull/18/head into 2021.4 2021-03-31 15:42:41 +02:00
Showing only changes of commit 064237904a - Show all commits

View File

@@ -165,7 +165,7 @@ class Console:
@classmethod @classmethod
def read(cls, output: str = None) -> str: def read(cls, output: str = None) -> str:
if output is not None and not cls._hold_back: if output is not None and not cls._hold_back:
cls.write(output) cls.write_line(output)
return input()[0] return input()[0]
@@ -177,6 +177,8 @@ class Console:
if output is not None: if output is not None:
cls.write_line(output) cls.write_line(output)
cls._output('\n', end='')
return input() return input()
@classmethod @classmethod