You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
'NoneType' object cannot be interpreted as an integer
at .venv/lib/python3.9/site-packages/cleo/io/inputs/input.py:77 in read_line
73│ """ 74│ if not self._interactive: 75│ return default 76│ → 77│ return self._stream.readline(length) 78│ 79│ def close(self) -> None: 80│ """
81│ Closes the input.
The text was updated successfully, but these errors were encountered:
From
https://github.com/sdispater/cleo/blob/8c3ba5847f33b9da16143f2bba9e3999bb6d3cd5/cleo/io/inputs/input.py#L68-L77
length
param default value isNone
buttyping.IO.readline
takes anint
as parameter:which causes
The text was updated successfully, but these errors were encountered: