Format python code with Black (#12663)

This commit is contained in:
Jellyfrog
2021-03-28 18:02:33 +02:00
committed by GitHub
parent f9b25ccdbc
commit 9946fe8b15
12 changed files with 1295 additions and 586 deletions

View File

@@ -6,11 +6,9 @@ from pkg_resources import DistributionNotFound, VersionConflict
args = sys.argv
# verbose flag
verbose = '-v' in args
verbose = "-v" in args
requirements = [
'PyMySQL'
]
requirements = ["PyMySQL"]
try:
pkg_resources.require(requirements)