Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Dec 18, 2023
1 parent 8c093cc commit dc2e03c
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions disdrodb/tests/test_l0/test_l0a_processing.py
Original file line number Diff line number Diff line change
Expand Up @@ -596,12 +596,12 @@ def test_read_raw_files():
verbose = False

# Create a test dataframe
df1 = pd.DataFrame({
"time": pd.date_range(start="2022-01-01", end="2022-01-02", freq="H"), "value": np.random.rand(25)
})
df2 = pd.DataFrame({
"time": pd.date_range(start="2022-01-03", end="2022-01-04", freq="H"), "value": np.random.rand(25)
})
df1 = pd.DataFrame(
{"time": pd.date_range(start="2022-01-01", end="2022-01-02", freq="H"), "value": np.random.rand(25)}
)
df2 = pd.DataFrame(
{"time": pd.date_range(start="2022-01-03", end="2022-01-04", freq="H"), "value": np.random.rand(25)}
)
df_list = [df1, df2]

# Test raise value error if empty filepaths list is passed
Expand Down

0 comments on commit dc2e03c

Please sign in to comment.