Skip to content

Commit

Permalink
Satisfy mypy
Browse files Browse the repository at this point in the history
  • Loading branch information
adamnovak committed Jan 17, 2024
1 parent 899170c commit cd41c95
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/toil/fileStores/abstractFileStore.py
Original file line number Diff line number Diff line change
Expand Up @@ -619,7 +619,7 @@ def log_to_leader(self, text: str, level: int = logging.INFO) -> None:
def logToMaster(self, text: str, level: int = logging.INFO) -> None:
self.log_to_leader(text, level)

def log_user_stream(self, name: str, stream: IO[bytes]):
def log_user_stream(self, name: str, stream: IO[bytes]) -> None:
"""
Send a stream of UTF-8 text to the leader as a named log stream.
Expand Down

0 comments on commit cd41c95

Please sign in to comment.