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 5
5
An overview of what myplugin does.
6
6
"""
7
7
8
- from pkg_resources import get_distribution , DistributionNotFound
8
+ from pkg_resources import DistributionNotFound , get_distribution
9
9
10
10
from .cmd2_ext_test import ExternalTestMixin
11
11
Original file line number Diff line number Diff line change 2
2
# coding=utf-8
3
3
# import cmd2
4
4
import cmd2
5
- import cmd2_ext_test
6
5
import cmd2 .py_bridge
6
+ import cmd2_ext_test
7
7
8
8
9
9
class Example (cmd2 .Cmd ):
Original file line number Diff line number Diff line change 2
2
# coding=utf-8
3
3
4
4
import os
5
+
5
6
import setuptools
6
7
7
8
#
Original file line number Diff line number Diff line change 14
14
15
15
import invoke
16
16
17
-
18
17
TASK_ROOT = pathlib .Path (__file__ ).resolve ().parent
19
18
TASK_ROOT_STR = str (TASK_ROOT )
20
19
Original file line number Diff line number Diff line change 3
3
4
4
import pytest
5
5
6
- from cmd2 import cmd2 , CommandResult
7
6
import cmd2_ext_test
7
+ from cmd2 import CommandResult , cmd2
8
8
9
9
######
10
10
#
Original file line number Diff line number Diff line change 14
14
import sys
15
15
16
16
import invoke
17
+
17
18
from plugins .ext_test import tasks as ext_test_tasks
18
19
19
20
# create namespaces
Original file line number Diff line number Diff line change 9
9
- setuptools >= 39.1.0
10
10
"""
11
11
import os
12
- import invoke
13
12
import pathlib
14
13
import re
15
14
import shutil
16
15
import sys
17
16
18
- from plugins import tasks as plugin_tasks
17
+ import invoke
19
18
19
+ from plugins import tasks as plugin_tasks
20
20
21
21
TASK_ROOT = pathlib .Path (__file__ ).resolve ().parent
22
22
TASK_ROOT_STR = str (TASK_ROOT )
You can’t perform that action at this time.
0 commit comments