Skip to content

Commit

Permalink
Remove fragment sentence, closes #667
Browse files Browse the repository at this point in the history
  • Loading branch information
jpmckinney committed Jul 14, 2021
1 parent 91243af commit c4edc31
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion AUTHORS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,5 @@ agate is made by a community. The following individuals have contributed code, d
* `Loïc Corbasson <https://github.com/lcorbasson>`_
* `Danny Sepler <https://github.com/dannysepler>`_
* `brian-from-quantrocket <https://github.com/brian-from-quantrocket>`_

* `mathdesc <https://github.com/mathdesc>`_
* `Tim Gates <https://github.com/timgates42>`_
1 change: 1 addition & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
------------------

* feat: :meth:`.Table.from_json` accepts an ``encoding`` keyword argument. (#734)
* feat: :meth:`.Table.print_html` accepts a ``max_precision`` keyword argument. (#753)
* feat: :class:`.Max` works with :class:`.TimeDelta`. (#735)
* fix: :class:`.Mean` returns ``None`` if there are no values to average. (#706)
* fix: :meth:`.Table.homogenize` accepts tuples. (#710)
Expand Down
3 changes: 1 addition & 2 deletions agate/table/from_csv.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,7 @@ def from_csv(cls, path, column_names=None, column_types=None, row_names=None, sk
:param row_names:
See :meth:`.Table.__init__`.
:param skip_lines:
The number of lines to skip from the top of the file. Note that skip
lines will not work with
The number of lines to skip from the top of the file.
:param header:
If :code:`True`, the first row of the CSV is assumed to contain column
names. If :code:`header` and :code:`column_names` are both specified
Expand Down

0 comments on commit c4edc31

Please sign in to comment.