File tree Expand file tree Collapse file tree 7 files changed +7
-6
lines changed
Expand file tree Collapse file tree 7 files changed +7
-6
lines changed Original file line number Diff line number Diff line change 55An overview of what myplugin does.
66"""
77
8- from pkg_resources import get_distribution , DistributionNotFound
8+ from pkg_resources import DistributionNotFound , get_distribution
99
1010from .cmd2_ext_test import ExternalTestMixin
1111
Original file line number Diff line number Diff line change 22# coding=utf-8
33# import cmd2
44import cmd2
5- import cmd2_ext_test
65import cmd2 .py_bridge
6+ import cmd2_ext_test
77
88
99class Example (cmd2 .Cmd ):
Original file line number Diff line number Diff line change 22# coding=utf-8
33
44import os
5+
56import setuptools
67
78#
Original file line number Diff line number Diff line change 1414
1515import invoke
1616
17-
1817TASK_ROOT = pathlib .Path (__file__ ).resolve ().parent
1918TASK_ROOT_STR = str (TASK_ROOT )
2019
Original file line number Diff line number Diff line change 33
44import pytest
55
6- from cmd2 import cmd2 , CommandResult
76import cmd2_ext_test
7+ from cmd2 import CommandResult , cmd2
88
99######
1010#
Original file line number Diff line number Diff line change 1414import sys
1515
1616import invoke
17+
1718from plugins .ext_test import tasks as ext_test_tasks
1819
1920# create namespaces
Original file line number Diff line number Diff line change 99 - setuptools >= 39.1.0
1010"""
1111import os
12- import invoke
1312import pathlib
1413import re
1514import shutil
1615import sys
1716
18- from plugins import tasks as plugin_tasks
17+ import invoke
1918
19+ from plugins import tasks as plugin_tasks
2020
2121TASK_ROOT = pathlib .Path (__file__ ).resolve ().parent
2222TASK_ROOT_STR = str (TASK_ROOT )
You can’t perform that action at this time.
0 commit comments