Skip to content

Commit 34e14cd

Browse files
committed
chore: Fix spelling
1 parent b1c4658 commit 34e14cd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

module_utils/storage_lsr/argument_validator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def _validate_bool(cls, value):
5656
return False
5757
if value is None:
5858
return None
59-
raise TypeError("'%s' has to be convertable to a bool" % value)
59+
raise TypeError("'%s' has to be convertible to a bool" % value)
6060

6161
@classmethod
6262
def _validate_int(cls, value):

pylintrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ confidence=
5252
# can either give multiple identifiers separated by comma (,) or put this
5353
# option multiple times (only on the command line, not in the configuration
5454
# file where it should appear only once).You can also use "--disable=all" to
55-
# disable everything first and then reenable specific checks. For example, if
55+
# disable everything first and then re-enable specific checks. For example, if
5656
# you want to run only the similarities checker, you can use "--disable=all
5757
# --enable=similarities". If you want to run only the classes checker, but have
5858
# no Warning level messages displayed, use"--disable=all --enable=classes

0 commit comments

Comments
 (0)