mirror of
https://github.com/chidiwilliams/buzz.git
synced 2026-03-14 22:55:46 +01:00
10 lines
215 B
Python
10 lines
215 B
Python
import logging
|
|
|
|
from gui import Application
|
|
|
|
logging.basicConfig(
|
|
level=logging.DEBUG,
|
|
format="[%(asctime)s] %(module)s.%(funcName)s:%(lineno)d %(levelname)s -> %(message)s")
|
|
|
|
app = Application()
|
|
app.exec()
|