@@ -56,11 +56,7 @@ def health(
5656 extra_body : Body | None = None ,
5757 timeout : float | httpx .Timeout | None | NotGiven = not_given ,
5858 ) -> HealthInfo :
59- """
60- Get health status.
61-
62- Get the current health status of the service.
63- """
59+ """Get the current health status of the service."""
6460 return self ._get (
6561 "/v1/health" ,
6662 options = make_request_options (
@@ -79,11 +75,7 @@ def version(
7975 extra_body : Body | None = None ,
8076 timeout : float | httpx .Timeout | None | NotGiven = not_given ,
8177 ) -> VersionInfo :
82- """
83- Get version.
84-
85- Get the version of the service.
86- """
78+ """Get the version of the service."""
8779 return self ._get (
8880 "/v1/version" ,
8981 options = make_request_options (
@@ -123,11 +115,7 @@ async def health(
123115 extra_body : Body | None = None ,
124116 timeout : float | httpx .Timeout | None | NotGiven = not_given ,
125117 ) -> HealthInfo :
126- """
127- Get health status.
128-
129- Get the current health status of the service.
130- """
118+ """Get the current health status of the service."""
131119 return await self ._get (
132120 "/v1/health" ,
133121 options = make_request_options (
@@ -146,11 +134,7 @@ async def version(
146134 extra_body : Body | None = None ,
147135 timeout : float | httpx .Timeout | None | NotGiven = not_given ,
148136 ) -> VersionInfo :
149- """
150- Get version.
151-
152- Get the version of the service.
153- """
137+ """Get the version of the service."""
154138 return await self ._get (
155139 "/v1/version" ,
156140 options = make_request_options (
0 commit comments