Skip to content

Commit 42fa779

Browse files
committed
missing pragma
1 parent 75d00c6 commit 42fa779

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

zarr/meta.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ def encode_fill_value(v, dtype):
178178
return bool(v)
179179
elif dtype.kind in 'SV':
180180
v = base64.standard_b64encode(v)
181-
if not PY2:
181+
if not PY2: # pragma: py2 no cover
182182
v = str(v, 'ascii')
183183
return v
184184
elif dtype.kind == 'U':

0 commit comments

Comments
 (0)