Skip to content

Commit 6e19fb1

Browse files
tleonhardtanselor
authored andcommitted
Ran isort
1 parent 4f631be commit 6e19fb1

File tree

7 files changed

+7
-6
lines changed

7 files changed

+7
-6
lines changed

plugins/ext_test/cmd2_ext_test/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
An overview of what myplugin does.
66
"""
77

8-
from pkg_resources import get_distribution, DistributionNotFound
8+
from pkg_resources import DistributionNotFound, get_distribution
99

1010
from .cmd2_ext_test import ExternalTestMixin
1111

plugins/ext_test/examples/example.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
# coding=utf-8
33
# import cmd2
44
import cmd2
5-
import cmd2_ext_test
65
import cmd2.py_bridge
6+
import cmd2_ext_test
77

88

99
class Example(cmd2.Cmd):

plugins/ext_test/setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
# coding=utf-8
33

44
import os
5+
56
import setuptools
67

78
#

plugins/ext_test/tasks.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414

1515
import invoke
1616

17-
1817
TASK_ROOT = pathlib.Path(__file__).resolve().parent
1918
TASK_ROOT_STR = str(TASK_ROOT)
2019

plugins/ext_test/tests/test_ext_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33

44
import pytest
55

6-
from cmd2 import cmd2, CommandResult
76
import cmd2_ext_test
7+
from cmd2 import CommandResult, cmd2
88

99
######
1010
#

plugins/tasks.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
import sys
1515

1616
import invoke
17+
1718
from plugins.ext_test import tasks as ext_test_tasks
1819

1920
# create namespaces

tasks.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@
99
- setuptools >= 39.1.0
1010
"""
1111
import os
12-
import invoke
1312
import pathlib
1413
import re
1514
import shutil
1615
import sys
1716

18-
from plugins import tasks as plugin_tasks
17+
import invoke
1918

19+
from plugins import tasks as plugin_tasks
2020

2121
TASK_ROOT = pathlib.Path(__file__).resolve().parent
2222
TASK_ROOT_STR = str(TASK_ROOT)

0 commit comments

Comments
 (0)