style: apply black via pre-commit run -a

This commit is contained in:
Henry Schreiner
2021-05-03 13:12:36 -04:00
committed by Henry Schreiner
parent 9cbed6a9be
commit 178aaea6c7
53 changed files with 1479 additions and 714 deletions
+6 -2
View File
@@ -6,7 +6,9 @@ import pytest
from . import utils
pure_python_project = test_projects.TestProject()
pure_python_project.files['setup.py'] = '''
pure_python_project.files[
'setup.py'
] = '''
from setuptools import Extension, setup
setup(
@@ -16,7 +18,9 @@ setup(
)
'''
pure_python_project.files['spam.py'] = '''
pure_python_project.files[
'spam.py'
] = '''
def a_function():
pass
'''