diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2022-04-07 01:02:24 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-07 01:02:24 -0600 |
commit | 28e624d1e78ee46d7040e6a099bda39d7fa60e3d (patch) | |
tree | a06138bca035d10cab34ddd950fdbf8ff7d464d0 /numpy/lib/format.py | |
parent | ca85c17e712c93717abb5c2b921393c3ecfc47c4 (diff) | |
parent | 782fdec661e8ba24f31a1b8886ec9a0a4301efd2 (diff) | |
download | numpy-28e624d1e78ee46d7040e6a099bda39d7fa60e3d.tar.gz |
Merge pull request #21291 from oscargus/spaceandcos
DOC: Add space after argument name
Diffstat (limited to 'numpy/lib/format.py')
-rw-r--r-- | numpy/lib/format.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/numpy/lib/format.py b/numpy/lib/format.py index 3967b43ee..264fff8d6 100644 --- a/numpy/lib/format.py +++ b/numpy/lib/format.py @@ -421,10 +421,10 @@ def _write_array_header(fp, d, version=None): d : dict This has the appropriate entries for writing its string representation to the header of the file. - version: tuple or None - None means use oldest that works - explicit version will raise a ValueError if the format does not - allow saving this data. Default: None + version : tuple or None + None means use oldest that works. Providing an explicit version will + raise a ValueError if the format does not allow saving this data. + Default: None """ header = ["{"] for key, value in sorted(d.items()): |