Skip to content

Commit

Permalink
New pydantic dropped, try this
Browse files Browse the repository at this point in the history
  • Loading branch information
jwills committed Aug 12, 2023
1 parent 0486b8d commit 363ad36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion buenavista/http/type_mapping.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def _long(value: int) -> ClientTypeSignatureParameter:
def _cts(
raw_type: str, arguments: List[ClientTypeSignatureParameter] = []
) -> ClientTypeSignature:
return ClientTypeSignature(raw_type=raw_type, arguments=arguments)
return ClientTypeSignature(rawType=raw_type, arguments=arguments)


STRING_CTS = _cts("varchar", [_long(2**32)])
Expand Down

0 comments on commit 363ad36

Please sign in to comment.