Skip to content
This repository has been archived by the owner on Jul 11, 2023. It is now read-only.

Commit

Permalink
Fixed regex
Browse files Browse the repository at this point in the history
  • Loading branch information
roll committed Dec 19, 2019
1 parent 9d1eb05 commit fc1feb3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tabulator/stream.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ class Stream(object):
List of row numbers, strings and regex patterns to skip.
If a string, it'll skip rows that begin with it e.g. '#' and '//'.
To provide a regext pattern start it with `^` e.g. `^skip_me.*`
For example: `skip_rows=[1, '# comment', '^# (regex|comment)']
For example: `skip_rows=[1, '# comment', '^# (regex|comment)']`
post_parse (List[function], optional):
List of generator functions that
Expand Down

0 comments on commit fc1feb3

Please sign in to comment.