diff options
author | Josh Morman <jmorman@gnuradio.org> | 2021-11-24 12:48:20 -0500 |
---|---|---|
committer | mormj <34754695+mormj@users.noreply.github.com> | 2021-11-24 14:41:53 -0500 |
commit | 817fc3ce9cdc819a291e76ec324c4e748381f035 (patch) | |
tree | ed00faf5ea2c0f5a8caaba0ce41cd816dd6ca958 /grc/tests/test_compiler.py | |
parent | e776d673aa51b5ef19e16cfb6d22098c0b14a679 (diff) |
grc: pep8 formatting
Signed-off-by: Josh Morman <jmorman@gnuradio.org>
Diffstat (limited to 'grc/tests/test_compiler.py')
-rw-r--r-- | grc/tests/test_compiler.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/grc/tests/test_compiler.py b/grc/tests/test_compiler.py index fbdffd3e0f..4e0e262809 100644 --- a/grc/tests/test_compiler.py +++ b/grc/tests/test_compiler.py @@ -13,11 +13,13 @@ import tempfile from grc.compiler import main + def test_compiler(capsys): args = Namespace( output=tempfile.gettempdir(), user_lib_dir=False, - grc_files=[path.join(path.dirname(__file__), 'resources', 'test_compiler.grc')], + grc_files=[path.join(path.dirname(__file__), + 'resources', 'test_compiler.grc')], run=True ) |