We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca878d0 commit 86f66ddCopy full SHA for 86f66dd
Introducing_Trinket_M0/Trinket_SDCardList/code.py
@@ -28,7 +28,8 @@
28
29
def print_directory(path, tabs=0):
30
for file in os.listdir(path):
31
- if file == "?" : continue # Issue noted in Learn
+ if file == "?":
32
+ continue # Issue noted in Learn
33
stats = os.stat(path + "/" + file)
34
filesize = stats[6]
35
isdir = stats[0] & 0x4000
0 commit comments