Convert to black formatting

This commit is contained in:
Alan Pryor
2019-08-03 12:55:38 -04:00
parent 9bdaa8f161
commit 9b136b1ffa
59 changed files with 512 additions and 476 deletions

View File

@@ -1,6 +1,6 @@
class QueryService:
'''An example of a service that is shared'''
"""An example of a service that is shared"""
@staticmethod
def execute(query):
return 'Success'
return "Success"

View File

@@ -2,6 +2,6 @@ from .service import QueryService
def test_execute():
result = QueryService.execute('a complicated query')
result = QueryService.execute("a complicated query")
assert result == 'Success'
assert result == "Success"