Updated data.py(First Pull Request)

Fixed a typo error. The error was corrected by changing "argument" to "argument".
This commit is contained in:
THARAK HEGDE 2023-07-05 22:11:55 +05:30 committed by GitHub
parent eebb0a5746
commit 67fc6fed9e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -205,7 +205,7 @@ class Keyword(object):
def arg_to_bool(arg):
if isinstance(arg, bool):
return arg
assert arg in ["True", "False"], "Unexpected value for boolean arguement: " + repr(
assert arg in ["True", "False"], "Unexpected value for boolean argument: " + repr(
arg
)
return arg == "True"