Skip to content

Commit

Permalink
Add noqas needed for Galaxy library hacking.
Browse files Browse the repository at this point in the history
  • Loading branch information
jmchilton committed Feb 8, 2015
1 parent 053be7e commit f625f39
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions planemo/cli.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
import os
import sys

import click

# Hack to place Galaxy modules on PYTHONPATH - without
# actually having them on the real external PYTHONPATH.
import planemo_ext
planemo_ext_path = planemo_ext.__path__[0]
sys.path.append(os.path.join(planemo_ext_path))

import click
from .io import error
from .config import read_global_config
from .io import error # noqa, import must happen after Galaxy hack
from .config import read_global_config # noqa, ditto


CONTEXT_SETTINGS = dict(auto_envvar_prefix='PLANEMO')
Expand Down

0 comments on commit f625f39

Please sign in to comment.