| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
Sorry, something went wrong.
| ValueError: if table's schema is not set or `rows` is not a `Sequence`. | ||
| """ | ||
| if not isinstance(rows, (collections_abc.Sequence, collections_abc.Iterator)): | ||
| raise TypeError("rows argument should be a sequence of dicts or tuples") |
There was a problem hiding this comment.
Adding Iterator too as insert_rows_from_dataframe() calls insert_rows() with iterator returned by itertools.islice. dict still will give a False at this statement
Sorry, something went wrong.
| Back | FazBrowse Home | New Git URL |
Continuation of #10162
Adding arg type check into insert_rows() method