Skip to content

Commit ee0e64b

Browse files
committed
Apply black
1 parent 3f7eb13 commit ee0e64b

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

bpython/test/test_importcompletion.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def setUp(self):
1616
"zzabc.e",
1717
"zzabc.f",
1818
"zzefg.a1",
19-
"zzefg.a2"
19+
"zzefg.a2",
2020
]
2121

2222
def test_simple_completion(self):
@@ -36,11 +36,11 @@ def test_import(self):
3636
{"zzefg.a1", "zzefg.a2"},
3737
)
3838

39-
4039
@unittest.expectedFailure
4140
def test_import_empty(self):
4241
self.assertSetEqual(
43-
self.module_gatherer.complete(7, "import "), {"zzabc", "zzabd", "zzefg"}
42+
self.module_gatherer.complete(7, "import "),
43+
{"zzabc", "zzabd", "zzefg"},
4444
)
4545

4646
@unittest.expectedFailure
@@ -51,7 +51,8 @@ def test_from_import_empty(self):
5151

5252
def test_from_import(self):
5353
self.assertSetEqual(
54-
self.module_gatherer.complete(19, "from zzefg import a"), {"a1", "a2"}
54+
self.module_gatherer.complete(19, "from zzefg import a"),
55+
{"a1", "a2"},
5556
)
5657

5758

0 commit comments

Comments
 (0)