summaryrefslogtreecommitdiff
path: root/numpy/lib/format.py
diff options
context:
space:
mode:
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()):