1
0
mirror of https://github.com/satwikkansal/wtfpython synced 2024-05-30 09:58:05 +02:00

make the function *call* more visible (#104)

It is easy to overlook the () in that appending operation, I propose adding a short comment.
This commit is contained in:
Hannes 2018-12-05 20:45:59 +01:00 committed by Satwik Kansal
parent d7477885b8
commit b0e7a816ec

2
README.md vendored
View File

@ -555,7 +555,7 @@ for x in range(7):
def some_func(): def some_func():
return x return x
funcs.append(some_func) funcs.append(some_func)
results.append(some_func()) results.append(some_func()) # note the function call here
funcs_results = [func() for func in funcs] funcs_results = [func() for func in funcs]
``` ```