Skip to content

Commit

Permalink
isort
Browse files Browse the repository at this point in the history
  • Loading branch information
martinvonk committed Jan 17, 2024
1 parent 4181164 commit 6fb502b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions flopy/utils/gridgen.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import subprocess
import warnings
from pathlib import Path
from typing import Union, List
from typing import List, Union

import numpy as np

Expand Down Expand Up @@ -1982,7 +1982,7 @@ def read_quadtreegrid_top_dat(model_ws: Union[str, os.PathLike], nodelay: List[i
return read1d(f=f, a=np.empty((nodelay[lay]), dtype=np.float32))

@staticmethod
def read_quadtreegrid_bot_dat(model_ws: Union[str, os.PathLike], nodelay: list[int], lay: int):
def read_quadtreegrid_bot_dat(model_ws: Union[str, os.PathLike], nodelay: List[int], lay: int):
"""Read quadtreegrid.bot_.dat file
Parameters
Expand Down

0 comments on commit 6fb502b

Please sign in to comment.