File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -130,4 +130,4 @@ jobs:
130
130
run : |
131
131
cd ~
132
132
python -c 'import cclib; print(cclib.__version__)'
133
- python -c 'from cclib.io import ccread; data = ccread("https://raw.githubusercontent.com/amandadumi/cclib/master/data/Gaussian/basicGaussian16/dvb_sp.out"); print(data._parsed_data [0].scfenergies)'
133
+ python -c 'from cclib.io import ccread; data = ccread("https://raw.githubusercontent.com/amandadumi/cclib/master/data/Gaussian/basicGaussian16/dvb_sp.out"); print(data[0].scfenergies)'
Original file line number Diff line number Diff line change @@ -135,9 +135,9 @@ def ccread(
135
135
if not isinstance (source , list ):
136
136
source = [source ]
137
137
138
- a = ccDriver (source )
138
+ a = ccDriver (source , ** kwargs )
139
139
a .process_combinator ()
140
- return a ._ccCollection
140
+ return a ._ccCollection . _parsed_data
141
141
142
142
143
143
def ccopen (
You can’t perform that action at this time.
0 commit comments