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 93c6bda commit 2000ef6Copy full SHA for 2000ef6
README.md
@@ -346,11 +346,9 @@ submission = Submission(
346
)
347
348
result = judge0.run(submissions=submission)
349
-fs = Filesystem(content=result.post_execution_filesystem)
350
-
351
print(result.stdout)
352
353
-matches = [f for f in fs if f.name == "my_dir2/my_file2.txt"]
+matches = [f for f in result.post_execution_filesystem if f.name == "my_dir2/my_file2.txt"]
354
f = matches[0] if matches else None
355
print(f)
356
```
0 commit comments