Skip to content

Commit

Permalink
Fix syntax error adding an item to a list
Browse files Browse the repository at this point in the history
  • Loading branch information
pnuu committed May 25, 2023
1 parent 1890bb2 commit ec911db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion satpy/tests/multiscene_tests/test_blend.py
Original file line number Diff line number Diff line change
Expand Up @@ -429,6 +429,6 @@ def test_extra_datasets(self, nominal_data, expected_result):

da4 = xr.DataArray([0, 0, 1], attrs={'start_time': datetime(2023, 5, 22, 12, 0, 0)})

res = temporal_rgb(nominal_data + da4)
res = temporal_rgb(nominal_data + [da4,])

self._assert_results(res, nominal_data[-1].attrs['start_time'], expected_result)

0 comments on commit ec911db

Please sign in to comment.