Skip to content

Commit

Permalink
WIP: Codacy pylint issue...
Browse files Browse the repository at this point in the history
  • Loading branch information
eudesbarbosa committed Apr 1, 2021
1 parent 27d274d commit 77a28b7
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions snappy_wrappers/wrappers/epitoper_par/wrapper.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# isort:skip_file
# pylint: disable=wrong-import-position
import json
import os
import sys
Expand All @@ -9,7 +8,7 @@

base_dir = os.path.normpath(os.path.join(os.path.dirname(__file__), "..", "..", ".."))
sys.path.insert(0, base_dir)

# pylint: disable=wrong-import-position
from snappy_wrappers.wrapper_parallel import (
ResourceUsage,
SgeResourceUsageConverter,
Expand All @@ -23,8 +22,8 @@
# Naming clash limbo...
snake_job = snakemake
del snakemake
from snakemake import shell # noqa
from snakemake import snakemake as run_snakemake # noqa
from snakemake import shell # noqa: C0411
from snakemake import snakemake as run_snakemake # noqa: C0411

snakemake = snake_job

Expand Down

0 comments on commit 77a28b7

Please sign in to comment.