Updated a typo in print statement (#7696)

* Updated a typo in print statement

* Apply suggestions from code review

Co-authored-by: Caeden Perelli-Harris <caedenperelliharris@gmail.com>

Co-authored-by: Christian Clauss <cclauss@me.com>
Co-authored-by: Caeden Perelli-Harris <caedenperelliharris@gmail.com>
This commit is contained in:
SwayamSahu 2022-10-27 01:50:00 +05:30 committed by GitHub
parent b46b92a916
commit 71c7c0bd35
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -83,6 +83,6 @@ if __name__ == "__main__":
barcode = get_barcode(input("Barcode: ").strip())
if is_valid(barcode):
print(f"'{barcode}' is a valid Barcode")
print(f"'{barcode}' is a valid barcode.")
else:
print(f"'{barcode}' is NOT is valid Barcode.")
print(f"'{barcode}' is NOT a valid barcode.")