Skip to content

Commit e2e6b35

Browse files
committed
gh-117829 : stop lint problems
1 parent a85989c commit e2e6b35

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

Lib/test/test_zipapp.py

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,7 @@ def test_create_archive_with_include_pattern(self):
328328
(source / '__main__.py').touch()
329329
target = io.BytesIO()
330330
zipapp.create_archive(
331-
source=str(source),
331+
source=str(source),
332332
target=target,
333333
include_pattern=re.compile(r".*\.py")
334334
)
@@ -348,7 +348,7 @@ def test_create_archive_with_exclude_pattern(self):
348348
(source / '__main__.py').touch()
349349
target = io.BytesIO()
350350
zipapp.create_archive(
351-
source=str(source),
351+
source=str(source),
352352
target=target,
353353
exclude_pattern=re.compile(r".*\.py")
354354
)
@@ -368,7 +368,7 @@ def test_create_archive_with_include_and_exclude_pattern(self):
368368
(source / '__main__.py').touch()
369369
target = io.BytesIO()
370370
zipapp.create_archive(
371-
source=str(source),
371+
source=str(source),
372372
target=target,
373373
include_pattern=re.compile(r".*\.py"),
374374
exclude_pattern=re.compile(r".*z.*")
@@ -479,6 +479,9 @@ def test_info_error(self):
479479
# Program should exit with a non-zero return code.
480480
self.assertTrue(cm.exception.code)
481481

482+
def test_cmdline_create_with_include_pattern(self):
483+
484+
482485

483486
if __name__ == "__main__":
484487
unittest.main()

0 commit comments

Comments
 (0)