toast removed

This commit is contained in:
Lorenzo Volpi 2023-11-08 17:48:35 +01:00
parent 121c2c599f
commit 7c9a3df0e7
4 changed files with 1466 additions and 1499 deletions

Binary file not shown.

2955
poetry.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -24,7 +24,6 @@ pytest = "^7.4.0"
pylance = "^0.5.9"
pytest-mock = "^3.11.1"
pytest-cov = "^4.1.0"
win11toast = "^0.32"
tabulate = "^0.9.0"
paramiko = "^3.3.1"

View File

@ -1,4 +1,3 @@
from sys import platform
from traceback import print_exception as traceback
import quacc.evaluation.comp as comp
@ -10,13 +9,6 @@ from quacc.utils import create_dataser_dir
CE = comp.CompEstimator()
def toast():
if platform == "win32":
import win11toast
win11toast.notify("Comp", "Completed Execution")
def estimate_comparison():
log = Logger.logger()
for conf in env.get_confs():
@ -67,7 +59,6 @@ def main():
log.error(f"estimate comparison failed. Exceprion: {e}")
traceback(e)
toast()
Logger.close()