beepy import made optional
This commit is contained in:
parent
1823feb53d
commit
c2dbb38afe
|
@ -1,5 +1,8 @@
|
||||||
#!/bin/env python3
|
#!/bin/env python3
|
||||||
|
try:
|
||||||
import beepy # pip install beepy
|
import beepy # pip install beepy
|
||||||
|
except:
|
||||||
|
beepy = None
|
||||||
from multiprocessing import Process
|
from multiprocessing import Process
|
||||||
import argparse
|
import argparse
|
||||||
import time
|
import time
|
||||||
|
|
Loading…
Reference in New Issue