Skip to content

Commit

Permalink
rmv unused import
Browse files Browse the repository at this point in the history
  • Loading branch information
hungpham2511 committed Feb 22, 2020
1 parent 7bd53f1 commit ad6f468
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 8 deletions.
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,13 @@ lint:
pycodestyle toppra --max-line-length=120 --ignore=E731,W503
pydocstyle toppra

doc:
DOC:
echo "Buidling toppra docs"
sphinx-build -b html docs/source docs/build

gen-tags:
ctags -Re --exclude='.tox' --exclude='venv' --exclude='docs' --exclude=='dist' .

coverage:
python -m pytest -q --cov-report term --cov-report xml --cov=toppra tests

Expand Down
7 changes: 0 additions & 7 deletions toppra/algorithm/algorithm.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,6 @@
import logging
logger = logging.getLogger(__name__)

try:
import openravepy as orpy
except ImportError as err:
logger.debug("Unable to import openravepy. Exception: %s" % err.args[0])
except SyntaxError as err:
logger.debug("Unable to import openravepy. Exception: %s" % err.args[0])


class ParameterizationAlgorithm(object):
"""Base class for all parameterization algorithms.
Expand Down

0 comments on commit ad6f468

Please sign in to comment.