File tree 2 files changed +2
-3
lines changed
2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change 10
10
import queue
11
11
import time
12
12
import os
13
- import sys
14
13
from moleculekit .util import string_to_tempfile
15
14
import numpy as np
16
15
import tempfile
24
23
25
24
def _enqueue_output (obj , vmd , queue ):
26
25
while vmd .poll () is None :
27
- line = vmd .stdout .readline ()
26
+ _ = vmd .stdout .readline ()
28
27
# print("READIN: [" + line.decode("ascii") + "]", end="" );
29
28
# queue.put(line.decode("ascii"))
30
29
# print( "Process finished" )
Original file line number Diff line number Diff line change @@ -608,7 +608,7 @@ def SDFwrite(mol, filename):
608
608
609
609
for i in range (mol .bonds .shape [0 ]):
610
610
fh .write (
611
- f"{ mol .bonds [i , 0 ]+ 1 :>3} { mol .bonds [i , 1 ]+ 1 :>3} { bondmap [mol .bondtype [i ]]} 0 0 0 0\n "
611
+ f"{ mol .bonds [i , 0 ] + 1 :>3} { mol .bonds [i , 1 ] + 1 :>3} { bondmap [mol .bondtype [i ]]} 0 0 0 0\n "
612
612
)
613
613
614
614
if len (charges ):
You can’t perform that action at this time.
0 commit comments