Skip to content

Commit d133ced

Browse files
committed
minor changes
1 parent 9ce5599 commit d133ced

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

ledsa/tests/AcceptanceTests/LedsaATestLibrary.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -152,10 +152,7 @@ def create_cc_matrix_file(self):
152152
def load_extinction_coefficients_computed(solver, channel, led_array):
153153
filename = f'extinction_coefficients_{solver}_channel_{channel}_sum_col_val_led_array_{led_array}.csv'
154154
data = np.loadtxt(
155-
os.path.join('analysis', 'extinction_coefficients', solver, filename),
156-
skiprows=5,
157-
delimiter=','
158-
)
155+
os.path.join('analysis', 'extinction_coefficients', solver, filename),delimiter=',')
159156
time = data[:, 0]
160157
extinction_coefficients_computed = data[:, 1:]
161158
return time, extinction_coefficients_computed

0 commit comments

Comments
 (0)