beepy import made optional

This commit is contained in:
Christoph J. Scherr 2023-04-20 18:08:02 +02:00
parent 1823feb53d
commit c2dbb38afe
1 changed files with 4 additions and 1 deletions

View File

@ -1,5 +1,8 @@
#!/bin/env python3
import beepy # pip install beepy
try:
import beepy # pip install beepy
except:
beepy = None
from multiprocessing import Process
import argparse
import time