diff options
author | Frederick Muriuki Muriithi | 2022-05-21 12:11:58 +0300 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2022-05-21 12:13:12 +0300 |
commit | 63d9c9932721e98a9d6715686214157e276af105 (patch) | |
tree | 9c274e58ace5e2254b8eca37a8ad39531713f63e /gn3/commands.py | |
parent | b662fcb763488121a95a2b73d2e83c1c0abb8d70 (diff) | |
download | genenetwork3-63d9c9932721e98a9d6715686214157e276af105.tar.gz |
Fix linting errors
Diffstat (limited to 'gn3/commands.py')
-rw-r--r-- | gn3/commands.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gn3/commands.py b/gn3/commands.py index 5770902..9684eeb 100644 --- a/gn3/commands.py +++ b/gn3/commands.py @@ -111,5 +111,5 @@ def run_async_cmd( """A utility function to call `gn3.commands.queue_cmd` function and run the worker in the `one-shot` mode.""" cmd_id = queue_cmd(conn, job_queue, cmd, email, env) - subprocess.Popen(["python3", "sheepdog/worker.py"]) + subprocess.Popen(["python3", "sheepdog/worker.py"]) # pylint: disable=[consider-using-with] return cmd_id |