Skip to content

Commit 71c7c0b

Browse files
SwayamSahucclaussCaedenPH
authored
Updated a typo in print statement (TheAlgorithms#7696)
* Updated a typo in print statement * Apply suggestions from code review Co-authored-by: Caeden Perelli-Harris <[email protected]> Co-authored-by: Christian Clauss <[email protected]> Co-authored-by: Caeden Perelli-Harris <[email protected]>
1 parent b46b92a commit 71c7c0b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

strings/barcode_validator.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,6 @@ def get_barcode(barcode: str) -> int:
8383
barcode = get_barcode(input("Barcode: ").strip())
8484

8585
if is_valid(barcode):
86-
print(f"'{barcode}' is a valid Barcode")
86+
print(f"'{barcode}' is a valid barcode.")
8787
else:
88-
print(f"'{barcode}' is NOT is valid Barcode.")
88+
print(f"'{barcode}' is NOT a valid barcode.")

0 commit comments

Comments
 (0)