remove unused imports

This commit is contained in:
Axel Kohlmeyer
2022-06-14 10:45:05 -04:00
parent 6abb316dba
commit 2028c68bec
4 changed files with 3 additions and 6 deletions

View File

@ -1,7 +1,6 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import sys
import numpy as np
def reduce_Born(Cf):

View File

@ -1,7 +1,6 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import sys
import numpy as np
def reduce_Born(Cf):

View File

@ -26,7 +26,7 @@
# -nsteps 5
# number of timesteps, default = 5
import sys,math,random
import sys
import mdi
import numpy as np
from mpi4py import MPI
@ -42,7 +42,6 @@ def error(txt=None):
def perform_aimd(world,mm_comm,qm_comm):
me = world.Get_rank()
nprocs = world.Get_size()
# receive number of atoms from the MM engine

View File

@ -1,4 +1,4 @@
import hashlib,os,subprocess,sys
import hashlib,os,subprocess
# try to auto-detect the maximum number of available CPUs
def get_cpus():