Skip to content

Commit

Permalink
fix: support python 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
aaraney authored and shorvath-noaa committed Feb 22, 2024
1 parent 59df64b commit 26092b1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/troute-config/troute/config/output_parameters.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from pydantic import BaseModel, Field, conint, validator, confloat

from typing import Optional, List, Annotated
from typing_extensions import Literal
from typing import Optional, List
from typing_extensions import Annotated, Literal
from .types import FilePath, DirectoryPath

streamOutput_allowedTypes = Literal['.csv', '.nc', '.pkl']
Expand Down

0 comments on commit 26092b1

Please sign in to comment.