emmental/emmental.py
Anna Schumaker 64a6fdca2d lib: Import and configure the gi module
lib needs Gtk for some of its widgets, so do the import here to make
sure everything is configured properly. This prevents some warnings at
the very beginning of testing as well.

Signed-off-by: Anna Schumaker <Anna@NoWheyCreamery.com>
2021-11-01 13:52:38 -04:00

10 lines
144 B
Python
Executable File

#!/usr/bin/python
# Copyright 2021 (c) Anna Schumaker.
import lib
import tagdb
lib.settings.load()
tagdb.load()
import ui
ui.Application.run()