Skip to content

Commit 8f6297f

Browse files
committed
docstring
1 parent e0dee3c commit 8f6297f

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

numcodecs/zstd.pyx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -261,14 +261,17 @@ class Zstd(Codec):
261261
@classmethod
262262
@property
263263
def default_level(cls):
264+
"""Returns the default compression level of the underlying zstd library."""
264265
return ZSTD_defaultCLevel()
265266

266267
@classmethod
267268
@property
268269
def min_level(cls):
270+
"""Returns the minimum compression level of the underlying zstd library."""
269271
return ZSTD_minCLevel()
270272

271273
@classmethod
272274
@property
273275
def max_level(cls):
276+
"""Returns the maximum compression level of the underlying zstd library."""
274277
return ZSTD_maxCLevel()

0 commit comments

Comments
 (0)