Skip to content

Commit

Permalink
Mypy fixed return type
Browse files Browse the repository at this point in the history
  • Loading branch information
EdgesFTW committed Nov 30, 2023
1 parent a4302b1 commit b98e1a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion logpyle/runalyzer.py
Original file line number Diff line number Diff line change
Expand Up @@ -458,7 +458,7 @@ def my_sprintf(format: str, arg: str) -> str:
# }}}


def is_gathered(conn: sqlite3.Connection):
def is_gathered(conn: sqlite3.Connection) -> bool:
gathered = False
# get a list of tables with the name of 'runs'
res = list(conn.execute("""
Expand Down

0 comments on commit b98e1a6

Please sign in to comment.