Compare commits
No commits in common. "c2c06cc9fe1371d254882dbc7eaee33a21cdc222" and "897c3943c1ee2f5b028f1308a5f7483191218b16" have entirely different histories.
c2c06cc9fe
...
897c3943c1
File diff suppressed because it is too large
Load Diff
|
@ -125,9 +125,6 @@ if __name__ == "__main__":
|
||||||
parser.add_argument("-n", "--number", default=10, help="number of questions to ask", type=int, action="store")
|
parser.add_argument("-n", "--number", default=10, help="number of questions to ask", type=int, action="store")
|
||||||
args = parser.parse_args()
|
args = parser.parse_args()
|
||||||
filepath = pathlib.Path(args.file)
|
filepath = pathlib.Path(args.file)
|
||||||
if not filepath.exists():
|
|
||||||
print("no such file!")
|
|
||||||
exit(1)
|
|
||||||
interface = Tui()
|
interface = Tui()
|
||||||
app = Application(filepath, interface, args.number)
|
app = Application(filepath, interface, args.number)
|
||||||
try:
|
try:
|
||||||
|
|
Loading…
Reference in New Issue