misleading return type for cursor.fetchall()
vitidev opened this issue · 0 comments
vitidev commented
cursor.fetchall() marked as "return Iterable[sqlite3.Row]" what is misleading analyzer
may be better List[sqlite3.Row]
, because list is always returned there
the same for fetchmany