File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed
Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change 11# Copyright 2024 UT-Battelle, LLC, and other Celeritas developers.
22# See the top-level LICENSE file for details.
33# SPDX-License-Identifier: Apache-2.0
4- from typing import Optional
4+ from typing import Annotated , Optional
55
66import typer
77from pydantic import ValidationError
88from rich import print as rprint
9- from typing_extensions import Annotated
109
1110app = typer .Typer ()
1211
Original file line number Diff line number Diff line change 44"""Manage models used for JSON I/O with Celeritas."""
55
66from enum import Enum
7- from typing import Annotated , List , Literal , Optional
7+ from typing import Annotated , Literal , Optional
88
99from pydantic import (
1010 BaseModel ,
@@ -129,7 +129,7 @@ class TraceInput(TraceSetup):
129129class TraceOutput (_Model ):
130130 trace : TraceSetup
131131 image : ImageParams
132- volumes : Optional [List [str ]] = None
132+ volumes : Optional [list [str ]] = None
133133 sizeof_int : PositiveInt
134134
135135
You can’t perform that action at this time.
0 commit comments