Skip to content
This repository was archived by the owner on Apr 30, 2020. It is now read-only.

Commit 1ee943d

Browse files
author
Michal Cyprian
committed
Fix style test E501 errors
1 parent 0ade24d commit 1ee943d

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@
1515
long_description=long_description,
1616
keywords='taskotron fedora python rpm',
1717
author='Miro Hrončok, Iryna Shcherbina, Michal Cyprian',
18-
author_email='mhroncok@redhat.com, ishcherb@redhat.com, mcyprian@redhat.com',
18+
author_email=('mhroncok@redhat.com, ishcherb@redhat.com,'
19+
'mcyprian@redhat.com'),
1920
url='https://github.com/fedora-python/taskotron-python-versions',
2021
license='Public Domain',
2122
packages=find_packages(),

test/functional/test_unversioned_shebangs.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@ def test_matches(line, query, expected):
3434
'#!/usr/bin/python', {'/usr/bin/tracer'}),
3535
('python3-django-1.10.7-1.fc26.noarch.rpm', '#!/usr/bin/env python',
3636
{'/usr/lib/python3.6/site-packages/django/bin/django-admin.py',
37-
'/usr/lib/python3.6/site-packages/django/conf/project_template/manage.py-tpl'}),
37+
('/usr/lib/python3.6/site-packages/'
38+
'django/conf/project_template/manage.py-tpl')}),
3839
('python3-django-1.10.7-1.fc26.noarch.rpm', '#!/usr/bin/python', set()),
3940
('pyserial-2.7-6.fc25.noarch.rpm', '#!/usr/bin/python', set()),
4041
))
@@ -50,7 +51,8 @@ def test_get_problematic_files(archive, query, expected):
5051
{'#!/usr/bin/python': set(),
5152
'#!/usr/bin/env python':
5253
{'/usr/lib/python3.6/site-packages/django/bin/django-admin.py',
53-
'/usr/lib/python3.6/site-packages/django/conf/project_template/manage.py-tpl'}}),
54+
('/usr/lib/python3.6/site-packages/'
55+
'django/conf/project_template/manage.py-tpl')}}),
5456
('pyserial-2.7-6.fc25.noarch.rpm',
5557
{'#!/usr/bin/python': set(),
5658
'#!/usr/bin/env python': set()}),

0 commit comments

Comments
 (0)