Add MicroPython generated files to gitignore

This commit is contained in:
Ádám Kovács
2023-11-24 23:32:43 +01:00
parent 46669dc268
commit aa369fec09
26 changed files with 715 additions and 245 deletions

View File

@@ -17,7 +17,7 @@ class Stream:
def readexactly(self, n) -> Generator[Incomplete, None, Incomplete]: ...
def readline(self) -> Generator[Incomplete, None, Incomplete]: ...
def write(self, buf) -> None: ...
def drain(self) -> Generator[Incomplete, None, Incomplete]: ...
def drain(self) -> Generator[Incomplete, Incomplete, Incomplete]: ...
StreamReader = Stream
StreamWriter = Stream