Remove vendoring import from tasks/__init__

This commit is contained in:
Bruno Oliveira 2017-11-23 20:23:50 +00:00
parent f50ace7c0a
commit e97c774f8e
1 changed files with 1 additions and 2 deletions

View File

@ -4,10 +4,9 @@ Invoke tasks to help with pytest development and release process.
import invoke
from . import generate, vendoring
from . import generate
ns = invoke.Collection(
generate,
vendoring
)