Skip to content

Commit 162b1dc

Browse files
Clean code
No need for string typecasting because in python every user input is by default string
1 parent 5aa23ca commit 162b1dc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

qrcode.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33

44
# QR Code Generator
55
query = input("Enter Content: ") # Enter Content
6-
code = qrcode.make(str(query)) # Making the QR code
6+
code = qrcode.make(query) # Making the QR code
77
code.save("qrcode.png") # Saving the QR code file

0 commit comments

Comments
 (0)