From 3d5b4f073c3af969a9398d61c1f1a3a1a54c7eea Mon Sep 17 00:00:00 2001 From: yuta-yahagi Date: Tue, 22 Oct 2024 09:49:34 +0900 Subject: [PATCH] Ignore warning --- run_automated_wannier.py | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/run_automated_wannier.py b/run_automated_wannier.py index 5e60204..257fe50 100755 --- a/run_automated_wannier.py +++ b/run_automated_wannier.py @@ -8,12 +8,15 @@ from aiida_wannier90_workflows.workflows import Wannier90BandsWorkChain from aiida_quantumespresso.common.types import SpinType import numpy as np +import warnings + +warnings.filterwarnings("ignore") # Please modify these according to your machine -str_pw = 'qe-pw-7.1@magpu' -str_pw2wan = 'qe-pw2wannier90@magpu' -str_projwfc = 'qe-projwfc@magpu' -str_wan = 'wannier90@magpu' +str_pw = 'qe-pw@localhost' +str_pw2wan = 'qe-pw2wannier90@localhost' +str_projwfc = 'qe-projwfc@localhost' +str_wan = 'wannier90@localhost' group_name = 'scdm_workflow'