Skip to content

Commit

Permalink
Fix type annotation with new pydantic
Browse files Browse the repository at this point in the history
  • Loading branch information
timj committed Jul 1, 2024
1 parent 1e037fc commit 0ef6d1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/lsst/daf/butler/remote_butler/_query_driver.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@
QueryInputs,
)

_QueryResultTypeAdapter = TypeAdapter(QueryExecuteResultData)
_QueryResultTypeAdapter = TypeAdapter[QueryExecuteResultData](QueryExecuteResultData)


class RemoteQueryDriver(QueryDriver):
Expand Down

0 comments on commit 0ef6d1f

Please sign in to comment.