Convert to black formatting
This commit is contained in:
		@@ -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"
 | 
			
		||||
 
 | 
			
		||||
@@ -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"
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user