Skip to content

Commit

Permalink
PEP8 fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
aidanheerdegen committed Nov 29, 2023
1 parent ae7f283 commit 4da371a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions test/test_manifest.py
Original file line number Diff line number Diff line change
Expand Up @@ -166,8 +166,9 @@ def test_exe_reproduce():
local_exe_path = list(manifests['exe.yaml'].keys())[0]

assert(manifests == get_manifests(ctrldir/'manifests'))
assert( (ctrldir / local_exe_path).exists() )
assert( Path(manifests['exe.yaml'][local_exe_path]['fullpath']) == (ctrldir / local_exe_path).resolve() )
assert((ctrldir / local_exe_path).exists())
assert(Path(manifests['exe.yaml'][local_exe_path]['fullpath']) ==
(ctrldir / local_exe_path).resolve())

bindir = labdir / 'bin'
exe = config['exe']
Expand Down

0 comments on commit 4da371a

Please sign in to comment.