Closed kloczek closed 3 years ago
after disable disable flake8 and isort:
+ xvfb-run -a /usr/bin/python3 setup.py test
running pytest
running egg_info
writing cairocffi.egg-info/PKG-INFO
writing dependency_links to cairocffi.egg-info/dependency_links.txt
writing requirements to cairocffi.egg-info/requires.txt
writing top-level names to cairocffi.egg-info/top_level.txt
reading manifest file 'cairocffi.egg-info/SOURCES.txt'
writing manifest file 'cairocffi.egg-info/SOURCES.txt'
running build_ext
generating cffi module 'cairocffi/_generated/ffi.py'
generating cffi module 'cairocffi/_generated/ffi_pixbuf.py'
=========================================================================== test session starts ============================================================================
platform linux -- Python 3.8.9, pytest-6.2.3, py-1.10.0, pluggy-0.13.1
rootdir: /home/tkloczko/rpmbuild/BUILD/cairocffi-1.2.0, configfile: setup.cfg
plugins: forked-1.3.0, shutil-1.7.0, virtualenv-1.7.0, asyncio-0.14.0, expect-1.1.0, cov-2.11.1, mock-3.5.1, httpbin-1.0.0, xdist-2.2.1, flake8-1.0.7, timeout-1.4.2, betamax-0.8.1, pyfakefs-4.4.0, freezegun-0.4.2, flaky-3.7.0, cases-3.4.6, hypothesis-6.10.1
collected 52 items / 1 skipped / 51 selected
cairocffi/test_cairo.py ...........F.................................. [ 88%]
cairocffi/test_numpy.py . [ 90%]
cairocffi/test_pixbuf.py ..... [100%]
================================================================================= FAILURES =================================================================================
______________________________________________________________________________ test_metadata _______________________________________________________________________________
@pytest.mark.xfail(cairo_version() < 11504,
reason='Cairo version too low')
def test_metadata():
file_obj = io.BytesIO()
surface = PDFSurface(file_obj, 1, 1)
surface.set_metadata(PDF_METADATA_TITLE, 'title')
surface.set_metadata(PDF_METADATA_SUBJECT, 'subject')
surface.set_metadata(PDF_METADATA_CREATOR, 'creator')
surface.set_metadata(PDF_METADATA_AUTHOR, 'author')
surface.set_metadata(PDF_METADATA_KEYWORDS, 'keywords')
surface.set_metadata(PDF_METADATA_CREATE_DATE, '2013-07-21T23:46:00+01:00')
surface.set_metadata(PDF_METADATA_MOD_DATE, '2013-07-21T23:46:00Z')
surface.finish()
pdf_bytes = file_obj.getvalue()
assert b'/Title (title)' in pdf_bytes
assert b'/Subject (subject)' in pdf_bytes
assert b'/Creator (creator)' in pdf_bytes
assert b'/Author (author)' in pdf_bytes
assert b'/Keywords (keywords)' in pdf_bytes
> assert b"/CreationDate (20130721234600+01'00)" in pdf_bytes
E assert b"/CreationDate (20130721234600+01'00)" in b"%PDF-1.5\n%\xb5\xed\xae\xfb\n4 0 obj\n<< /Length 5 0 R\n /Filter /FlateDecode\n>>\nstream\nx\x9c3T0\x00B]C a\xa8\x...000438 00000 n \n0000000689 00000 n \ntrailer\n<< /Size 8\n /Root 7 0 R\n /Info 6 0 R\n>>\nstartxref\n741\n%%EOF\n"
cairocffi/test_cairo.py:258: AssertionError
========================================================================= short test summary info ==========================================================================
FAILED cairocffi/test_cairo.py::test_metadata - assert b"/CreationDate (20130721234600+01'00)" in b"%PDF-1.5\n%\xb5\xed\xae\xfb\n4 0 obj\n<< /Length 5 0 R\n /Filter /F...
================================================================= 1 failed, 51 passed, 1 skipped in 1.30s ==================================================================
I'm using cairo 1.17.4.
Hello!
This issue has already been fixed by #178, but it’s not been released yet.
OK. Just checked merged comkit and looks like it change onl;y test unit code so actual module code is not affected :)
May I ask when do you plan to make next release?
Thank you.
OK. Just checked merged comkit and looks like it change onl;y test unit code so actual module code is not affected :)
Yes, that’s a small change in Cairo that only breaks the test.
May I ask when do you plan to make next release?
Soon :wink:.
ping .. any update? :P
Just tested 1.3.0. First approach was regular pytest execution:
+ PYTHONPATH=/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib64/python3.8/site-packages:/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages
+ xvfb-run -a /usr/bin/pytest -ra
=========================================================================== test session starts ============================================================================
platform linux -- Python 3.8.12, pytest-6.2.5, py-1.10.0, pluggy-0.13.1
benchmark: 3.4.1 (defaults: timer=time.perf_counter disable_gc=False min_rounds=5 min_time=0.000005 max_time=1.0 calibration_precision=10 warmup=False warmup_iterations=100000)
Using --randomly-seed=524217364
rootdir: /home/tkloczko/rpmbuild/BUILD/cairocffi-1.3.0, configfile: setup.cfg
plugins: forked-1.3.0, shutil-1.7.0, virtualenv-1.7.0, expect-1.1.0, flake8-1.0.7, timeout-1.4.2, betamax-0.8.1, freezegun-0.4.2, aspectlib-1.5.2, toolbox-0.5, rerunfailures-9.1.1, requests-mock-1.9.3, cov-2.12.1, flaky-3.7.0, benchmark-3.4.1, xdist-2.3.0, pylama-7.7.1, datadir-1.3.1, regressions-2.2.0, xprocess-0.18.1, black-0.3.12, asyncio-0.15.1, subtests-0.5.0, isort-2.0.0, hypothesis-6.14.6, mock-3.6.1, profiling-1.7.0, randomly-3.8.0, nose2pytest-1.0.8, pyfakefs-4.5.1, tornado-0.8.1, twisted-1.13.3, aiohttp-0.3.0, localserver-0.5.0, anyio-3.3.1, trio-0.7.0, cases-3.6.4, yagot-0.5.0, Faker-8.14.1
collected 46 items / 4 errors / 42 selected
================================================================================== ERRORS ==================================================================================
_________________________________________________________________ ERROR collecting cairocffi/test_cairo.py _________________________________________________________________
ImportError while importing test module '/home/tkloczko/rpmbuild/BUILD/cairocffi-1.3.0/cairocffi/test_cairo.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
/usr/lib64/python3.8/importlib/__init__.py:127: in import_module
return _bootstrap._gcd_import(name[level:], package, level)
cairocffi/__init__.py:17: in <module>
from ._generated.ffi import ffi
E ModuleNotFoundError: No module named 'cairocffi._generated.ffi'
_________________________________________________________________ ERROR collecting cairocffi/test_numpy.py _________________________________________________________________
ImportError while importing test module '/home/tkloczko/rpmbuild/BUILD/cairocffi-1.3.0/cairocffi/test_numpy.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
/usr/lib64/python3.8/importlib/__init__.py:127: in import_module
return _bootstrap._gcd_import(name[level:], package, level)
cairocffi/__init__.py:17: in <module>
from ._generated.ffi import ffi
E ModuleNotFoundError: No module named 'cairocffi._generated.ffi'
________________________________________________________________ ERROR collecting cairocffi/test_pixbuf.py _________________________________________________________________
ImportError while importing test module '/home/tkloczko/rpmbuild/BUILD/cairocffi-1.3.0/cairocffi/test_pixbuf.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
/usr/lib64/python3.8/importlib/__init__.py:127: in import_module
return _bootstrap._gcd_import(name[level:], package, level)
cairocffi/__init__.py:17: in <module>
from ._generated.ffi import ffi
E ModuleNotFoundError: No module named 'cairocffi._generated.ffi'
__________________________________________________________________ ERROR collecting cairocffi/test_xcb.py __________________________________________________________________
ImportError while importing test module '/home/tkloczko/rpmbuild/BUILD/cairocffi-1.3.0/cairocffi/test_xcb.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
/usr/lib64/python3.8/importlib/__init__.py:127: in import_module
return _bootstrap._gcd_import(name[level:], package, level)
cairocffi/__init__.py:17: in <module>
from ._generated.ffi import ffi
E ModuleNotFoundError: No module named 'cairocffi._generated.ffi'
========================================================================= short test summary info ==========================================================================
ERROR cairocffi/test_cairo.py
ERROR cairocffi/test_numpy.py
ERROR cairocffi/test_pixbuf.py
ERROR cairocffi/test_xcb.py
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! Interrupted: 4 errors during collection !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
============================================================================ 4 errors in 0.34s =============================================================================
pytest-xprocess reminder::Be sure to terminate the started process by running 'pytest --xkill' if you have not explicitly done so in your fixture with 'xprocess.getinfo(<process_name>).terminate()'.
OK so in this case looks like cairocffi._generated.ffi
needs to be preloaded so ..
+ PYTHONPATH=/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib64/python3.8/site-packages:/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages
+ xvfb-run -a /usr/bin/pytest -ra --pyargs cairocffi._generated.ffi
=========================================================================== test session starts ============================================================================
platform linux -- Python 3.8.12, pytest-6.2.5, py-1.10.0, pluggy-0.13.1
benchmark: 3.4.1 (defaults: timer=time.perf_counter disable_gc=False min_rounds=5 min_time=0.000005 max_time=1.0 calibration_precision=10 warmup=False warmup_iterations=100000)
Using --randomly-seed=3814650879
rootdir: /home/tkloczko/rpmbuild/BUILD/cairocffi-1.3.0, configfile: setup.cfg
plugins: forked-1.3.0, shutil-1.7.0, virtualenv-1.7.0, expect-1.1.0, flake8-1.0.7, timeout-1.4.2, betamax-0.8.1, freezegun-0.4.2, aspectlib-1.5.2, toolbox-0.5, rerunfailures-9.1.1, requests-mock-1.9.3, cov-2.12.1, flaky-3.7.0, benchmark-3.4.1, xdist-2.3.0, pylama-7.7.1, datadir-1.3.1, regressions-2.2.0, xprocess-0.18.1, black-0.3.12, asyncio-0.15.1, subtests-0.5.0, isort-2.0.0, hypothesis-6.14.6, mock-3.6.1, profiling-1.7.0, randomly-3.8.0, nose2pytest-1.0.8, pyfakefs-4.5.1, tornado-0.8.1, twisted-1.13.3, aiohttp-0.3.0, localserver-0.5.0, anyio-3.3.1, trio-0.7.0, cases-3.6.4, yagot-0.5.0, Faker-8.14.1
collected 2 items
. .F [100%]
================================================================================= FAILURES =================================================================================
_______________________________________________________________________________ FLAKE8-check _______________________________________________________________________________
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:6:5: E128 continuation line under-indented for visual indent
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:6:13: E251 unexpected spaces around keyword / parameter equals
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:6:15: E251 unexpected spaces around keyword / parameter equals
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:7:5: E128 continuation line under-indented for visual indent
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:7:11: E251 unexpected spaces around keyword / parameter equals
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:7:13: E251 unexpected spaces around keyword / parameter equals
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:7:80: E501 line too long (19873 > 79 characters)
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:5: E128 continuation line under-indented for visual indent
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:13: E251 unexpected spaces around keyword / parameter equals
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:15: E251 unexpected spaces around keyword / parameter equals
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:56: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:58: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:80: E501 line too long (28438 > 79 characters)
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:101: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:103: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:143: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:145: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:185: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:187: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:227: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:229: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:269: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:271: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:315: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:317: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:356: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:361: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:400: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:405: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:450: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:456: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:498: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:500: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:541: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:543: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:583: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:585: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:630: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:633: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:677: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:679: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:722: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:724: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:765: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:767: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:809: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:811: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:852: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:854: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:891: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:893: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:929: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:931: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:971: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:973: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:1012: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:1014: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:1058: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:1060: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:1103: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:1105: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:1142: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:1144: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:1185: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:1187: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:1224: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:1226: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:1267: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:1269: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:1306: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:1308: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:1348: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:1350: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:1393: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:1395: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:1438: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:1440: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:1484: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:1486: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:1524: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:1526: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:1568: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:1570: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:1609: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:1611: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:1651: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:1653: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:1694: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:1696: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:1738: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:1740: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:1784: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:1786: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:1821: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:1823: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:1858: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:1860: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:1899: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:1901: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:1941: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:1944: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:1986: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:1988: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:2026: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:2028: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:2066: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:2068: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:2107: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:2109: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:2150: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:2152: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:2198: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:2200: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:2242: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:2244: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:2285: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:2287: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:2331: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:2333: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:2374: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:2376: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:2419: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:2421: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:2462: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:2464: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:2507: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:2509: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:2548: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:2550: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:2590: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:2592: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:2633: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:2635: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:2676: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:2678: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:2719: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:2721: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:2762: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:2764: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:2802: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:2805: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:2844: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:2846: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:2886: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:2888: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:2933: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:2936: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:2982: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:2985: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:3026: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:3029: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:3068: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:3070: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:3114: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:3117: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:3159: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:3161: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:3204: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:3206: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:3250: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:3252: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:3297: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:3300: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:3344: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:3347: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:3392: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:3395: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:3439: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:3442: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:3484: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:3487: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:3536: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:3539: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:3588: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:3591: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:3628: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:3630: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:3672: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:3675: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:3718: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:3721: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:3759: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:3761: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:3800: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:3802: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:3844: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:3847: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:3890: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:3893: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:3934: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:3937: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:3982: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:3985: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:4026: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:4028: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:4066: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:4069: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:4110: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:4112: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:4151: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:4153: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:4191: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:4193: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:4231: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:4233: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:4278: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:4280: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:4323: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:4325: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:4370: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:4372: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:4424: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:4426: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:4470: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:4472: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:4518: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:4520: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:4565: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:4567: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:4617: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:4619: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:4665: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:4667: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:4714: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:4716: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:4763: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:4765: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:4811: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:4813: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:4857: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:4859: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:4906: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:4908: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:4957: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:4959: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:5006: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:5008: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:5050: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:5052: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:5093: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:5095: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:5136: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:5138: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:5174: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:5176: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:5212: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:5214: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:5257: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:5259: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:5303: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:5305: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:5350: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:5352: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:5407: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:5410: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:5455: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:5458: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:5506: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:5509: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:5562: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:5565: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:5612: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:5615: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:5666: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:5669: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:5716: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:5719: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:5768: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:5771: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:5819: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:5822: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:5867: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:5870: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:5922: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:5925: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:5972: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:5975: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:6021: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:6024: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:6071: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:6073: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:6131: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:6134: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:6184: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:6186: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:6236: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:6238: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:6286: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:6288: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:6333: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:6336: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:6382: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:6385: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:6432: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:6434: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:6481: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:6484: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:6531: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:6533: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:6580: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:6583: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:6630: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:6633: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:6686: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:6689: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:6733: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:6736: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:6783: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:6786: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:6835: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:6837: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:6879: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:6881: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:6926: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:6928: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:6982: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:6985: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:7027: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:7030: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:7073: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:7076: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:7116: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:7118: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:7167: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:7170: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:7224: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:7227: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:7269: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:7272: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:7320: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:7323: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:7371: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:7374: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:7426: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:7429: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:7487: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:7490: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:7538: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:7541: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:7585: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:7588: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:7632: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:7634: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:7682: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:7684: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:7728: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:7730: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:7775: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:7777: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:7822: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:7824: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:7873: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:7875: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:7935: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:7937: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:7980: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:7982: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:8025: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:8028: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:8075: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:8077: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:8119: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:8122: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:8163: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:8166: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:8210: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:8212: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:8256: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:8258: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:8300: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:8303: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:8345: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:8347: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:8388: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:8390: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:8431: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:8434: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:8479: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:8481: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:8532: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:8535: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:8583: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:8586: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:8631: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:8634: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:8677: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:8680: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:8729: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:8732: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:8774: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:8777: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:8819: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:8822: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:8863: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:8866: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:8910: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:8912: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:8965: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:8968: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:9010: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:9012: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:9055: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:9057: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:9099: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:9102: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:9139: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:9141: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:9178: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:9180: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:9217: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:9219: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:9256: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:9258: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:9295: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:9297: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:9334: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:9336: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:9378: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:9380: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:9417: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:9419: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:9456: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:9458: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:9497: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:9499: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:9540: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:9542: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:9583: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:9585: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:9637: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:9639: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:9676: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:9678: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:9707: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:9709: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:9747: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:9749: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:9779: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:9781: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:9819: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:9821: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:9860: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:9862: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:9898: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:9900: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:9950: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:9952: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:9987: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:9989: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:10024: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:10026: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:10066: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:10068: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:10100: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:10102: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:10136: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:10138: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:10187: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:10189: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:10222: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:10224: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:10264: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:10266: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:10306: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:10308: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:10347: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:10349: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:10387: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:10389: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:10441: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:10443: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:10484: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:10486: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:10532: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:10534: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:10583: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:10585: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:10639: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:10641: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:10697: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:10699: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:10753: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:10755: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:10810: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:10812: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:10859: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:10861: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:10917: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:10919: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:10961: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:10963: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:11003: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:11005: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:11051: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:11053: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:11092: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:11094: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:11134: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:11136: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:11185: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:11187: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:11217: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:11219: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:11257: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:11259: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:11298: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:11300: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:11338: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:11340: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:11383: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:11385: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:11440: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:11442: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:11486: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:11488: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:11537: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:11539: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:11584: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:11586: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:11635: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:11637: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:11679: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:11681: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:11724: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:11726: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:11771: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:11773: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:11819: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:11821: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:11865: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:11867: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:11919: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:11921: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:11976: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:11978: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:12031: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:12033: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:12090: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:12092: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:12145: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:12147: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:12190: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:12192: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:12236: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:12238: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:12290: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:12292: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:12347: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:12349: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:12402: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:12404: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:12461: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:12463: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:12516: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:12518: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:12563: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:12565: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:12614: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:12616: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:12655: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:12657: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:12700: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:12702: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:12736: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:12738: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:12778: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:12780: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:12819: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:12821: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:12860: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:12862: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:12903: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:12905: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:12947: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:12949: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:12991: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:12993: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:13031: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:13033: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:13072: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:13074: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:13114: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:13116: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:13152: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:13154: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:13195: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:13197: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:13235: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:13237: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:13282: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:13284: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:13325: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:13327: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:13363: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:13365: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:13401: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:13403: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:13442: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:13444: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:13483: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:13485: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:13525: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:13527: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:13566: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:13568: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:13604: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:13606: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:13642: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:13644: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:13687: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:13689: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:13730: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:13732: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:13778: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:13780: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:13835: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:13837: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:13892: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:13894: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:13956: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:13958: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:14006: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:14008: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:14058: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:14060: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:14110: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:14112: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:14162: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:14164: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:14213: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:14215: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:14248: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:14250: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:14283: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:14285: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:14320: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:14322: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:14355: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:14357: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:14387: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:14389: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:14427: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:14429: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:14466: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:14468: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:14514: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:14516: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:14560: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:14562: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:14605: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:14607: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:14654: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:14656: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:14695: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:14697: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:14738: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:14740: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:14779: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:14781: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:14819: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:14821: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:14872: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:14874: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:14922: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:14924: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:14966: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:14968: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:15018: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:15020: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:15067: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:15069: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:15117: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:15119: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:15175: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:15177: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:15237: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:15239: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:15293: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:15295: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:15342: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:15344: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:15390: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:15392: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:15438: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:15440: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:15496: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:15498: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:15557: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:15559: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:15619: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:15621: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:15654: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:15656: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:15690: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:15692: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:15730: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:15732: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:15763: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:15765: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:15807: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:15809: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:15847: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:15849: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:15887: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:15889: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:15941: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:15943: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:15996: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:15998: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:16050: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:16052: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:16099: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:16101: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:16146: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:16148: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:16195: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:16197: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:16251: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:16253: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:16297: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:16299: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:16344: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:16346: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:16387: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:16389: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:16443: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:16445: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:16498: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:16500: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:16544: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:16546: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:16590: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:16592: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:16643: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:16645: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:16689: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:16691: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:16743: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:16745: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:16798: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:16800: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:16842: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:16844: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:16889: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:16891: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:16933: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:16935: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:16982: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:16984: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:17027: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:17029: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:17073: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:17075: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:17119: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:17121: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:17165: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:17167: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:17214: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:17216: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:17256: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:17258: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:17300: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:17302: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:17351: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:17353: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:17397: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:17399: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:17454: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:17456: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:17513: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:17515: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:17565: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:17567: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:17619: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:17621: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:17667: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:17669: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:17725: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:17727: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:17774: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:17776: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:17811: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:17813: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:17858: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:17860: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:17899: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:17901: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:17945: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:17947: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:17990: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:17992: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:18046: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:18048: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:18105: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:18107: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:18159: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:18161: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:18209: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:18211: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:18255: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:18257: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:18311: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:18313: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:18357: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:18359: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:18404: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:18406: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:18442: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:18444: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:18493: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:18495: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:18561: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:18563: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:18623: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:18625: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:18672: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:18674: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:18736: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:18738: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:18793: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:18795: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:18854: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:18856: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:18921: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:18923: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:18979: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:18981: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:19039: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:19041: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:19101: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:19103: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:19162: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:19164: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:19229: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:19231: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:19287: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:19289: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:19347: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:19349: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:19409: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:19411: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:19461: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:19463: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:19518: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:19520: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:19575: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:19577: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:19612: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:19614: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:19662: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:19664: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:19699: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:19701: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:19748: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:19750: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:19801: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:19803: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:19840: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:19842: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:19881: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:19883: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:19932: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:19934: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:19984: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:19986: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:20026: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:20028: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:20066: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:20068: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:20112: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:20114: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:20160: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:20162: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:20204: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:20206: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:20258: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:20260: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:20301: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:20303: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:20350: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:20352: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:20394: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:20396: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:20435: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:20437: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:20478: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:20480: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:20531: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:20533: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:20575: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:20577: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:20615: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:20617: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:20665: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:20667: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:20703: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:20705: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:20751: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:20753: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:20791: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:20793: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:20830: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:20832: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:20869: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:20871: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:20907: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:20909: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:20942: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:20944: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:20976: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:20978: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:21008: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:21010: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:21041: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:21043: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:21087: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:21089: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:21134: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:21136: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:21181: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:21183: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:21228: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:21230: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:21281: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:21283: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:21336: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:21338: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:21392: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:21394: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:21451: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:21453: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:21507: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:21509: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:21555: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:21557: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:21608: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:21610: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:21661: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:21663: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:21710: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:21712: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:21763: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:21765: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:21809: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:21811: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:21861: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:21863: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:21915: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:21917: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:21959: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:21961: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:22000: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:22002: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:22036: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:22038: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:22077: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:22079: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:22118: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:22120: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:22161: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:22163: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:22205: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:22207: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:22246: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:22248: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:22286: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:22288: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:22327: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:22329: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:22369: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:22371: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:22407: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:22409: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:22450: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:22452: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:22490: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:22492: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:22533: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:22535: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:22571: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:22573: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:22613: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:22615: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:22656: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:22658: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:22702: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:22704: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:22743: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:22745: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:22784: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:22786: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:22823: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:22825: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:22860: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:22862: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:22897: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:22899: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:22941: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:22943: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:22975: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:22977: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:23019: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:23021: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:23053: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:23055: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:23095: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:23097: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:23138: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:23140: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:23183: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:23185: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:23239: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:23241: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:23290: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:23292: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:23340: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:23342: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:23396: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:23398: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:23439: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:23441: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:23481: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:23483: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:23522: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:23524: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:23569: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:23571: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:23615: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:23617: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:23668: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:23670: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:23720: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:23722: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:23779: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:23781: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:23831: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:23833: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:23880: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:23882: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:23935: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:23937: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:23979: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:23981: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:24028: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:24030: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:24084: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:24086: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:24132: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:24134: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:24178: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:24180: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:24234: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:24236: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:24296: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:24298: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:24360: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:24362: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:24423: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:24425: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:24487: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:24489: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:24549: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:24551: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:24612: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:24614: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:24676: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:24678: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:24728: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:24730: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:24778: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:24780: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:24823: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:24825: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:24876: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:24878: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:24928: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:24930: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:24987: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:24989: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:25036: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:25038: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:25085: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:25087: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:25130: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:25132: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:25172: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:25174: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:25226: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:25228: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:25273: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:25275: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:25321: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:25323: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:25376: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:25378: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:25420: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:25422: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:25466: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:25468: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:25523: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:25525: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:25580: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:25582: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:25639: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:25641: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:25696: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:25698: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:25745: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:25747: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:25782: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:25784: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:25817: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:25819: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:25866: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:25868: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:25911: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:25913: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:25951: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:25953: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:25988: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:25990: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:26036: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:26038: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:26088: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:26090: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:26139: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:26141: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:26191: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:26193: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:26228: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:26230: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:26265: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:26267: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:26314: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:26316: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:26370: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:26372: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:26434: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:26436: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:26500: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:26502: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:26568: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:26570: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:26624: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:26626: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:26688: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:26690: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:26754: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:26756: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:26822: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:26824: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:26864: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:26866: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:26915: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:26917: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:26950: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:26952: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:26992: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:26994: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:27052: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:27054: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:27115: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:27117: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:27184: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:27186: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:27241: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:27243: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:27296: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:27298: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:27363: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:27365: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:27430: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:27432: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:27494: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:27496: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:27551: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:27553: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:27599: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:27601: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:27656: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:27658: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:27713: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:27715: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:27773: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:27775: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:27821: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:27823: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:27872: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:27874: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:27936: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:27938: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:27997: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:27999: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:28055: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:28057: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:28113: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:28115: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:28166: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:28168: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:28212: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:28214: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:28269: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:28271: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:28335: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:28337: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:28387: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:28389: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:8:28435: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:9:19: E251 unexpected spaces around keyword / parameter equals
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:9:21: E251 unexpected spaces around keyword / parameter equals
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:9:61: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:9:80: E501 line too long (3148 > 79 characters)
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:9:85: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:9:112: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:9:151: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:9:172: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:9:194: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:9:252: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:9:278: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:9:305: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:9:331: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:9:364: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:9:398: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:9:449: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:9:474: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:9:495: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:9:517: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:9:575: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:9:604: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:9:635: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:9:693: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:9:722: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:9:751: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:9:776: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:9:802: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:9:831: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:9:861: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:9:917: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:9:976: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:9:1035: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:9:1094: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:9:1156: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:9:1213: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:9:1258: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:9:1310: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:9:1365: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:9:1423: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:9:1473: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:9:1495: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:9:1517: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:9:1539: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:9:1561: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:9:1583: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:9:1606: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:9:1661: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:9:1687: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:9:1713: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:9:1766: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:9:1819: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:9:1840: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:9:1861: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:9:1886: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:9:1913: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:9:1970: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:9:1991: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:9:2012: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:9:2037: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:9:2064: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:9:2122: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:9:2148: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:9:2178: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:9:2213: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:9:2265: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:9:2322: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:9:2375: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:9:2432: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:9:2459: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:9:2506: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:9:2532: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:9:2556: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:9:2585: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:9:2629: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:9:2683: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:9:2737: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:9:2803: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:9:2867: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:9:2931: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:9:2991: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:9:3042: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:9:3092: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:10:11: E251 unexpected spaces around keyword / parameter equals
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:10:13: E251 unexpected spaces around keyword / parameter equals
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:10:80: E501 line too long (6770 > 79 characters)
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:10:154: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:10:363: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:10:482: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:10:747: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:10:875: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:10:979: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:10:1150: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:10:1279: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:10:1439: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:10:1544: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:10:1772: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:10:1902: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:10:2075: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:10:2192: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:10:2313: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:10:3044: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:10:3184: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:10:3403: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:10:3653: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:10:3802: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:10:3903: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:10:3991: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:10:4126: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:10:5456: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:10:5647: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:10:6330: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:10:6571: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:10:6672: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:11:15: E251 unexpected spaces around keyword / parameter equals
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:11:17: E251 unexpected spaces around keyword / parameter equals
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:11:48: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:11:80: E501 line too long (3506 > 79 characters)
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:11:80: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:11:109: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:11:132: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:11:157: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:11:185: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:11:222: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:11:254: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:11:289: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:11:329: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:11:363: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:11:402: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:11:436: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:11:473: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:11:507: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:11:547: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:11:584: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:11:624: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:11:662: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:11:699: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:11:738: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:11:772: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:11:805: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:11:845: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:11:883: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:11:919: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:11:956: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:11:990: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:11:1026: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:11:1063: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:11:1105: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:11:1137: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:11:1172: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:11:1212: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:11:1252: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:11:1297: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:11:1336: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:11:1372: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:11:1426: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:11:1477: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:11:1530: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:11:1584: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:11:1639: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:11:1676: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:11:1717: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:11:1759: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:11:1796: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:11:1838: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:11:1872: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:11:1911: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:11:1945: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:11:1987: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:11:2040: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:11:2089: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:11:2124: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:11:2164: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:11:2200: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:11:2239: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:11:2266: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:11:2312: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:11:2352: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:11:2392: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:11:2433: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:11:2487: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:11:2549: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:11:2613: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:11:2679: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:11:2717: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:11:2752: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:11:2786: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:11:2822: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:11:2856: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:11:2891: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:11:2930: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:11:2969: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:11:3008: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:11:3040: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:11:3082: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:11:3129: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:11:3174: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:11:3217: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:11:3262: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:11:3303: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:11:3335: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:11:3366: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:11:3400: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:11:3436: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:11:3473: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:12:14: E251 unexpected spaces around keyword / parameter equals
/home/tkloczko/rpmbuild/BUILDROOT/python-cairocffi-1.3.0-.fc35.x86_64/usr/lib/python3.8/site-packages/cairocffi/_generated/ffi.py:12:16: E251 unexpected spaces around keyword / parameter equals
---------------------------------------------------------------------------- Captured log call -----------------------------------------------------------------------------
WARNING flake8.options.manager:manager.py:186 option --indent-size: please update `help=` text to use %(default)s instead of %default -- this will be an error in the future
WARNING flake8.options.manager:manager.py:207 option --max-complexity: please update from optparse string `type=` to argparse callable `type=` -- this will be an error in the future
========================================================================= short test summary info ==========================================================================
FAILED ::FLAKE8
======================================================================= 1 failed, 1 passed in 1.23s ========================================================================
pytest-xprocess reminder::Be sure to terminate the started process by running 'pytest --xkill' if you have not explicitly done so in your fixture with 'xprocess.getinfo(<process_name>).terminate()'.
There’s an option set in setup.cfg
to avoid this:
[flake8]
exclude =
cairocffi/constants.py
cairocffi/_generated/*.py
Issue is that this entry cannot be used because as you see pytest executed against source tree does not work :/
You can launch python setup.py test
that will automatically generate the needed files and launch tests with the right options.
Full test suite log is in attachment python-cairocffi.log