Skip to content

Commit 4cc9ff5

Browse files
committed
Change order of import statements
1 parent 6341451 commit 4cc9ff5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

plasma/conf.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
import os
33
import errno
44

5-
if os.path.exists('./conf.yaml'):
6-
conf = parameters('./conf.yaml')
7-
elif os.path.exists(os.path.join(os.path.abspath(os.path.dirname(__file__)), '../examples/conf.yaml')):
5+
if os.path.exists(os.path.join(os.path.abspath(os.path.dirname(__file__)), '../examples/conf.yaml')):
86
conf = parameters(os.path.join(os.path.abspath(os.path.dirname(__file__)), '../examples/conf.yaml'))
7+
elif os.path.exists('./conf.yaml'):
8+
conf = parameters('./conf.yaml')
99
elif os.path.exists('./examples/conf.yaml'):
1010
conf = parameters('./examples/conf.yaml')
1111
else:

0 commit comments

Comments
 (0)