Skip to content

Commit

Permalink
flake8 fix missing whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
martin-springer committed Nov 17, 2023
1 parent 51741bc commit cf0cb90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rdtools/test/soiling_cods_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ def test_Kalman_filter_for_SR(cods_normalized_daily):
assert x in expected_columns, \
"'{}' not an expected column in Kalman Filter results]".format(x)
for x in expected_columns:
assert x in actual_columns,\
assert x in actual_columns, \
"'{}' was expected as a column, but not in Kalman Filter results".format(x)
assert Ps.shape == (732, 2, 2), "Shape of array of covariance matrices (Ps) not as expected"

Expand Down

0 comments on commit cf0cb90

Please sign in to comment.