Skip to content

Commit ffda007

Browse files
BethanyGYrahcaz7
andauthored
Update concepts/decorators/about.md
Co-authored-by: Yrahcaz <74512479+Yrahcaz7@users.noreply.github.com>
1 parent cb35ac1 commit ffda007

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

concepts/decorators/about.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ def my_validator(func):
124124
def my_wrapper(world):
125125
print(f"Entering {func.__name__} with {world} argument")
126126

127-
if (world == "Pluto"):
127+
if world == "Pluto":
128128
print("Pluto is not a planet!")
129129
else:
130130
return func(world)

0 commit comments

Comments
 (0)