Remove unnecessary parenthesis from code examples
This commit is contained in:
parent
ac4e487237
commit
e1a9a3328d
2 changed files with 3 additions and 3 deletions
|
|
@ -13,7 +13,7 @@
|
|||
if dir.open(path) == OK:
|
||||
dir.list_dir_begin()
|
||||
var file_name = dir.get_next()
|
||||
while (file_name != ""):
|
||||
while file_name != "":
|
||||
if dir.current_is_dir():
|
||||
print("Found directory: " + file_name)
|
||||
else:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue