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 5, 2023
1 parent d48590c commit 30a3436
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pvnet/models/multimodal/multimodal.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,9 @@ def __init__(
nwp_history_minutes = history_minutes
if nwp_forecast_minutes is None:
nwp_forecast_minutes = forecast_minutes
nwp_sequence_len = 10 # TODO Fix = nwp_history_minutes // 60 + nwp_forecast_minutes // 60 + 1
nwp_sequence_len = (
10 # TODO Fix = nwp_history_minutes // 60 + nwp_forecast_minutes // 60 + 1
)

self.nwp_encoder = nwp_encoder(
sequence_length=nwp_sequence_len,
Expand Down

0 comments on commit 30a3436

Please sign in to comment.