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 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