Skip to content

Commit

Permalink
Fix mypy issue
Browse files Browse the repository at this point in the history
  • Loading branch information
alifbe committed Oct 15, 2024
1 parent 9daef14 commit 1245d95
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/subscript/check_swatinit/check_swatinit.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import argparse
import sys
from typing import Any, Dict, List
from typing import Any, Dict, List, Union

import numpy as np
import pandas as pd
Expand Down Expand Up @@ -473,7 +473,7 @@ def _evaluate_pc(
swats: List[float],
scale_vert: List[float],
swls: List[float],
swus: List[float],
swus: Union[None, List[float]],
satfunc: pd.DataFrame,
sat_name: str = "SW",
pc_name: str = "PCOW",
Expand Down

0 comments on commit 1245d95

Please sign in to comment.