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 4aea4fd commit ead721fCopy full SHA for ead721f
tests/test_diffusion.py
@@ -77,13 +77,10 @@ def setUpClass(cls):
77
and not os.path.exists(os.path.join(script_dir, filename))
78
and os.path.isdir(os.path.join(f"{script_dir}/../examples", filename))
79
):
80
- try:
81
- os.symlink(
82
- os.path.join(f"{script_dir}/../examples", filename),
83
- os.path.join(script_dir, filename),
84
- )
85
- except FileExistsError:
86
- pass
+ os.symlink(
+ os.path.join(f"{script_dir}/../examples", filename),
+ os.path.join(script_dir, filename),
+ )
87
88
for submission in submissions:
89
cls._write_command(submission, cls.out_f)
0 commit comments