toast removed
This commit is contained in:
parent
121c2c599f
commit
7c9a3df0e7
Binary file not shown.
File diff suppressed because it is too large
Load Diff
|
@ -24,7 +24,6 @@ pytest = "^7.4.0"
|
||||||
pylance = "^0.5.9"
|
pylance = "^0.5.9"
|
||||||
pytest-mock = "^3.11.1"
|
pytest-mock = "^3.11.1"
|
||||||
pytest-cov = "^4.1.0"
|
pytest-cov = "^4.1.0"
|
||||||
win11toast = "^0.32"
|
|
||||||
tabulate = "^0.9.0"
|
tabulate = "^0.9.0"
|
||||||
paramiko = "^3.3.1"
|
paramiko = "^3.3.1"
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
from sys import platform
|
|
||||||
from traceback import print_exception as traceback
|
from traceback import print_exception as traceback
|
||||||
|
|
||||||
import quacc.evaluation.comp as comp
|
import quacc.evaluation.comp as comp
|
||||||
|
@ -10,13 +9,6 @@ from quacc.utils import create_dataser_dir
|
||||||
CE = comp.CompEstimator()
|
CE = comp.CompEstimator()
|
||||||
|
|
||||||
|
|
||||||
def toast():
|
|
||||||
if platform == "win32":
|
|
||||||
import win11toast
|
|
||||||
|
|
||||||
win11toast.notify("Comp", "Completed Execution")
|
|
||||||
|
|
||||||
|
|
||||||
def estimate_comparison():
|
def estimate_comparison():
|
||||||
log = Logger.logger()
|
log = Logger.logger()
|
||||||
for conf in env.get_confs():
|
for conf in env.get_confs():
|
||||||
|
@ -67,7 +59,6 @@ def main():
|
||||||
log.error(f"estimate comparison failed. Exceprion: {e}")
|
log.error(f"estimate comparison failed. Exceprion: {e}")
|
||||||
traceback(e)
|
traceback(e)
|
||||||
|
|
||||||
toast()
|
|
||||||
Logger.close()
|
Logger.close()
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue