summaryrefslogtreecommitdiff
path: root/numpy/lib/format.py
diff options
context:
space:
mode:
authorOscar Gustafsson <oscar.gustafsson@gmail.com>2022-04-03 19:30:21 +0200
committerOscar Gustafsson <oscar.gustafsson@gmail.com>2022-04-03 21:49:47 +0200
commitf404e9e92e87a3990712d723d5c562a89300ac01 (patch)
tree1ab9eb466d4cc608f90f07374eaf67f01584e380 /numpy/lib/format.py
parent37bbfc9012ea46427143c0aa865d4cc7d8c94b9a (diff)
downloadnumpy-f404e9e92e87a3990712d723d5c562a89300ac01.tar.gz
Add space after argument name
Diffstat (limited to 'numpy/lib/format.py')
-rw-r--r--numpy/lib/format.py8
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()):