Skip to content

Commit fba0f1c

Browse files
committed
Fix weird indent in _zstdfile.py
1 parent 351bc0e commit fba0f1c

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

Lib/compression/zstd/_zstdfile.py

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -51,15 +51,14 @@ def __init__(
5151
creating exclusively, or "a" for appending. These can equivalently be
5252
given as "rb", "wb", "xb" and "ab" respectively.
5353
54-
55-
*level* is an int specifying the compression level to use, defaulting to
56-
COMPRESSION_LEVEL_DEFAULT
54+
level is an int specifying the compression level to use, defaulting to
55+
COMPRESSION_LEVEL_DEFAULT
5756
58-
*options* is a dict object that contains advanced compression
59-
parameters. See CParameter or DParameter for more on options.
57+
options is a dict object that contains advanced compression
58+
parameters. See CParameter or DParameter for more on options.
6059
61-
*zstd_dict* is a ZstdDict object, a pre-trained Zstandard dictionary.
62-
See the function train_dict for how to train a ZstdDict on sample data.
60+
zstd_dict is a ZstdDict object, a pre-trained Zstandard dictionary.
61+
See the function train_dict for how to train a ZstdDict on sample data.
6362
"""
6463
self._fp = None
6564
self._closefp = False

0 commit comments

Comments
 (0)