@@ -1791,7 +1791,7 @@ def __init__(self, v2: V2) -> None:
17911791 )
17921792 self .apply = ( # pyright: ignore[reportDeprecated]
17931793 _legacy_response .to_raw_response_wrapper (
1794- v2 .apply # pyright: ignore[reportDeprecated],
1794+ v2 .apply , # pyright: ignore[reportDeprecated],
17951795 )
17961796 )
17971797 self .draft = _legacy_response .to_raw_response_wrapper (
@@ -1802,7 +1802,7 @@ def __init__(self, v2: V2) -> None:
18021802 )
18031803 self .report = ( # pyright: ignore[reportDeprecated]
18041804 _legacy_response .to_raw_response_wrapper (
1805- v2 .report # pyright: ignore[reportDeprecated],
1805+ v2 .report , # pyright: ignore[reportDeprecated],
18061806 )
18071807 )
18081808 self .retrieve_report = _legacy_response .to_raw_response_wrapper (
@@ -1835,7 +1835,7 @@ def __init__(self, v2: AsyncV2) -> None:
18351835 )
18361836 self .apply = ( # pyright: ignore[reportDeprecated]
18371837 _legacy_response .async_to_raw_response_wrapper (
1838- v2 .apply # pyright: ignore[reportDeprecated],
1838+ v2 .apply , # pyright: ignore[reportDeprecated],
18391839 )
18401840 )
18411841 self .draft = _legacy_response .async_to_raw_response_wrapper (
@@ -1846,7 +1846,7 @@ def __init__(self, v2: AsyncV2) -> None:
18461846 )
18471847 self .report = ( # pyright: ignore[reportDeprecated]
18481848 _legacy_response .async_to_raw_response_wrapper (
1849- v2 .report # pyright: ignore[reportDeprecated],
1849+ v2 .report , # pyright: ignore[reportDeprecated],
18501850 )
18511851 )
18521852 self .retrieve_report = _legacy_response .async_to_raw_response_wrapper (
@@ -1879,7 +1879,7 @@ def __init__(self, v2: V2) -> None:
18791879 )
18801880 self .apply = ( # pyright: ignore[reportDeprecated]
18811881 to_streamed_response_wrapper (
1882- v2 .apply # pyright: ignore[reportDeprecated],
1882+ v2 .apply , # pyright: ignore[reportDeprecated],
18831883 )
18841884 )
18851885 self .draft = to_streamed_response_wrapper (
@@ -1890,7 +1890,7 @@ def __init__(self, v2: V2) -> None:
18901890 )
18911891 self .report = ( # pyright: ignore[reportDeprecated]
18921892 to_streamed_response_wrapper (
1893- v2 .report # pyright: ignore[reportDeprecated],
1893+ v2 .report , # pyright: ignore[reportDeprecated],
18941894 )
18951895 )
18961896 self .retrieve_report = to_streamed_response_wrapper (
@@ -1923,7 +1923,7 @@ def __init__(self, v2: AsyncV2) -> None:
19231923 )
19241924 self .apply = ( # pyright: ignore[reportDeprecated]
19251925 async_to_streamed_response_wrapper (
1926- v2 .apply # pyright: ignore[reportDeprecated],
1926+ v2 .apply , # pyright: ignore[reportDeprecated],
19271927 )
19281928 )
19291929 self .draft = async_to_streamed_response_wrapper (
@@ -1934,7 +1934,7 @@ def __init__(self, v2: AsyncV2) -> None:
19341934 )
19351935 self .report = ( # pyright: ignore[reportDeprecated]
19361936 async_to_streamed_response_wrapper (
1937- v2 .report # pyright: ignore[reportDeprecated],
1937+ v2 .report , # pyright: ignore[reportDeprecated],
19381938 )
19391939 )
19401940 self .retrieve_report = async_to_streamed_response_wrapper (
0 commit comments