Skip to content

Commit

Permalink
Linting
Browse files Browse the repository at this point in the history
  • Loading branch information
luiscape committed Aug 28, 2023
1 parent 7c30198 commit c56f50a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions 06_gpu_and_ml/mlc/mlc_inference.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ class QueueCallback(DeltaCallback):

def __init__(self, callback_interval: float):
super().__init__()
self.queue:queue.Queue = queue.Queue()
self.queue: queue.Queue = queue.Queue()
self.stopped = False
self.callback_interval = callback_interval

Expand Down Expand Up @@ -131,7 +131,7 @@ def main(prompt: str):
import curses

def _generate(stdscr):
buffer:List[str] = []
buffer: List[str] = []

def _buffered_message():
return "".join(buffer) + ("\n" * 4)
Expand Down

0 comments on commit c56f50a

Please sign in to comment.