Skip to content
This repository has been archived by the owner on Mar 3, 2023. It is now read-only.

Commit

Permalink
fixing linting errors from master => manager renames in branch merge
Browse files Browse the repository at this point in the history
  • Loading branch information
armadillojim committed Nov 3, 2020
1 parent 4759427 commit 0ede419
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion heron/tools/tracker/src/python/query.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,13 @@ def __init__(self, tracker):

# pylint: disable=attribute-defined-outside-init, no-member
@tornado.gen.coroutine
def execute_query(self, tmanager: TManagerLocation, query_string: str, start: int, end: int) -> Any:
def execute_query(
self,
tmanager: TManagerLocation,
query_string: str,
start: int,
end: int
) -> Any:
""" execute query """
if not tmanager:
raise Exception("No tmanager found")
Expand Down

0 comments on commit 0ede419

Please sign in to comment.