|
13 | 13 |
|
14 | 14 |
|
15 | 15 | class ConfigArrowEndpoints(ConfigEndpoints): |
16 | | - def __init__(self, arrow_client: AuthenticatedArrowClient, show_progress: bool = False): |
| 16 | + def __init__(self, arrow_client: AuthenticatedArrowClient): |
17 | 17 | self._arrow_client = arrow_client |
18 | | - self._show_progress = show_progress |
19 | 18 |
|
20 | 19 | @property |
21 | 20 | def defaults(self) -> DefaultsEndpoints: |
22 | | - return DefaultsArrowEndpoints(self._arrow_client, self._show_progress) |
| 21 | + return DefaultsArrowEndpoints(self._arrow_client) |
23 | 22 |
|
24 | 23 | @property |
25 | 24 | def limits(self) -> LimitsEndpoints: |
26 | | - return LimitsArrowEndpoints(self._arrow_client, self._show_progress) |
| 25 | + return LimitsArrowEndpoints(self._arrow_client) |
27 | 26 |
|
28 | 27 |
|
29 | 28 | class DefaultsArrowEndpoints(DefaultsEndpoints): |
30 | | - def __init__(self, arrow_client: AuthenticatedArrowClient, show_progress: bool = False): |
| 29 | + def __init__(self, arrow_client: AuthenticatedArrowClient): |
31 | 30 | self._arrow_client = arrow_client |
32 | | - self._show_progress = show_progress |
33 | 31 |
|
34 | 32 | def set( |
35 | 33 | self, |
@@ -58,9 +56,8 @@ def list( |
58 | 56 |
|
59 | 57 |
|
60 | 58 | class LimitsArrowEndpoints(LimitsEndpoints): |
61 | | - def __init__(self, arrow_client: AuthenticatedArrowClient, show_progress: bool = False): |
| 59 | + def __init__(self, arrow_client: AuthenticatedArrowClient): |
62 | 60 | self._arrow_client = arrow_client |
63 | | - self._show_progress = show_progress |
64 | 61 |
|
65 | 62 | def set( |
66 | 63 | self, |
|
0 commit comments