Skip to content

Commit 15ec46d

Browse files
mcmilknicman23
authored andcommitted
Fix checkstyle warning: E275 missing whitespace after keyword
Reviewed-by: George Melikov <mail@gmelikov.ru> Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Signed-off-by: Tino Reichardt <milky-zfs@mcmilk.de> Closes openzfs#13710
1 parent 3f7b08b commit 15ec46d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contrib/pyzfs/libzfs_core/_constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ def enum(*sequential, **named):
107107
)
108108
# compat before we used the enum helper for these values
109109
ZFS_ERR_CHECKPOINT_EXISTS = zfs_errno.ZFS_ERR_CHECKPOINT_EXISTS
110-
assert(ZFS_ERR_CHECKPOINT_EXISTS == 1024)
110+
assert (ZFS_ERR_CHECKPOINT_EXISTS == 1024)
111111
ZFS_ERR_DISCARDING_CHECKPOINT = zfs_errno.ZFS_ERR_DISCARDING_CHECKPOINT
112112
ZFS_ERR_NO_CHECKPOINT = zfs_errno.ZFS_ERR_NO_CHECKPOINT
113113
ZFS_ERR_DEVRM_IN_PROGRESS = zfs_errno.ZFS_ERR_DEVRM_IN_PROGRESS

0 commit comments

Comments
 (0)