pep8-e265: comment should start with #

This commit is contained in:
cneud 2025-03-25 23:54:31 +01:00
parent 87ae6d11a9
commit b4d168cae3
9 changed files with 729 additions and 731 deletions

View file

@ -45,7 +45,7 @@ class CapturingTestCase(TestCase):
"""
self.capture_out_err() # XXX snapshot just before executing the CLI
code = 0
sys.argv[1:] = args # XXX necessary because sys.argv reflects pytest args not cli args
sys.argv[1:] = args # XXX necessary because sys.argv reflects pytest args not cli args
try:
cli.main(args=args)
except SystemExit as e: