Skip to content

Commit 562f832

Browse files
committed
ch05: text input printed as uppercase
1 parent 31cb24d commit 562f832

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

05_howler/howler.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,7 @@ def main():
3434
outfile_arg = args.outfile
3535
input_arg = args.input
3636

37-
print(f'str_arg = "{outfile_arg}"')
38-
print(f'positional = "{input_arg}"')
37+
print(input_arg.upper())
3938

4039

4140
# --------------------------------------------------

0 commit comments

Comments
 (0)