Skip to content

Commit

Permalink
MAINT: fix deprecation warning (qiime2#253)
Browse files Browse the repository at this point in the history
  • Loading branch information
ebolyen authored and jairideout committed May 5, 2017
1 parent 55eac5c commit 02e5fe2
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions qiime2/plugins.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,10 @@ def _make_spec(self, name, plugin, action_types=None):
is_package=action_types is None
)

def create_module(self, spec):
# Required by Python 3.6, we just need the default behavior
return None

def exec_module(self, module):
spec = module.__spec__
plugin = spec.loader_state['plugin']
Expand Down

0 comments on commit 02e5fe2

Please sign in to comment.