-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Python gui demo #31
Python gui demo #31
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
three additional things:
- non-windows should fail
- change source file name to `windows_gui.py
- when can't find
--config_path
, it should fail
from concurrent.futures import ThreadPoolExecutor | ||
from typing import Optional, Sequence | ||
from itertools import chain | ||
import curses |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
OCD, but move this up to the import *
block and make everything alphabetical order within its own block
|
||
|
||
class Generator: | ||
def __init__(self, queue: Queue, synthesizer: Synthesizer, pllm_connection: Connection, pllm_process: Process): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
let's break up these longer argument blocks into multiline for better diffs
f5dc69e
to
319c860
Compare
No description provided.