From 799076a691fbf5417fa757fee0ebbec986c6552f Mon Sep 17 00:00:00 2001 From: Andrew Innes Date: Wed, 31 Aug 2022 08:24:25 +0800 Subject: [PATCH] Fix checkstyle warning: E275 missing whitespace after keyword (#128) Reviewed-by: George Melikov Reviewed-by: Brian Behlendorf Signed-off-by: Tino Reichardt Closes #13710 Co-authored-by: Tino Reichardt --- contrib/pyzfs/libzfs_core/_constants.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/pyzfs/libzfs_core/_constants.py b/contrib/pyzfs/libzfs_core/_constants.py index 7ee2ef87df3e..2db2bba8a824 100644 --- a/contrib/pyzfs/libzfs_core/_constants.py +++ b/contrib/pyzfs/libzfs_core/_constants.py @@ -106,7 +106,7 @@ def enum(*sequential, **named): ) # compat before we used the enum helper for these values ZFS_ERR_CHECKPOINT_EXISTS = zfs_errno.ZFS_ERR_CHECKPOINT_EXISTS -assert(ZFS_ERR_CHECKPOINT_EXISTS == 1024) +assert (ZFS_ERR_CHECKPOINT_EXISTS == 1024) ZFS_ERR_DISCARDING_CHECKPOINT = zfs_errno.ZFS_ERR_DISCARDING_CHECKPOINT ZFS_ERR_NO_CHECKPOINT = zfs_errno.ZFS_ERR_NO_CHECKPOINT ZFS_ERR_DEVRM_IN_PROGRESS = zfs_errno.ZFS_ERR_DEVRM_IN_PROGRESS