Commit 5747086396212581127e572083a251d87d37f589

Authored by Sergio Oliveira
1 parent a12566bc

Fixed pep8

Signed-off-by: Sergio Oliveira <sergio@tracy.com.br>
colab/plugins/utils/data.py
... ... @@ -19,7 +19,7 @@ def register_tasks():
19 19  
20 20 try:
21 21 module = importlib.import_module('{}.data_api'.format(app_name))
22   - except ImportError as e:
  22 + except ImportError:
23 23 continue
24 24  
25 25 for item_name in dir(module):
... ...
colab/plugins/utils/proxy_data_api.py
1 1  
2 2 import abc
3 3  
  4 +
4 5 class ProxyDataAPI(object):
5 6  
6 7 @abc.abstractmethod
... ...