Skip to content

Commit b2f8765

Browse files
chore(internal): minor formatting change
1 parent ff19d67 commit b2f8765

36 files changed

Lines changed: 368 additions & 368 deletions

File tree

src/cloudflare/resources/addressing/prefixes/advertisement_status.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -284,12 +284,12 @@ def __init__(self, advertisement_status: AdvertisementStatusResource) -> None:
284284

285285
self.edit = ( # pyright: ignore[reportDeprecated]
286286
to_raw_response_wrapper(
287-
advertisement_status.edit # pyright: ignore[reportDeprecated],
287+
advertisement_status.edit, # pyright: ignore[reportDeprecated],
288288
)
289289
)
290290
self.get = ( # pyright: ignore[reportDeprecated]
291291
to_raw_response_wrapper(
292-
advertisement_status.get # pyright: ignore[reportDeprecated],
292+
advertisement_status.get, # pyright: ignore[reportDeprecated],
293293
)
294294
)
295295

@@ -300,12 +300,12 @@ def __init__(self, advertisement_status: AsyncAdvertisementStatusResource) -> No
300300

301301
self.edit = ( # pyright: ignore[reportDeprecated]
302302
async_to_raw_response_wrapper(
303-
advertisement_status.edit # pyright: ignore[reportDeprecated],
303+
advertisement_status.edit, # pyright: ignore[reportDeprecated],
304304
)
305305
)
306306
self.get = ( # pyright: ignore[reportDeprecated]
307307
async_to_raw_response_wrapper(
308-
advertisement_status.get # pyright: ignore[reportDeprecated],
308+
advertisement_status.get, # pyright: ignore[reportDeprecated],
309309
)
310310
)
311311

@@ -316,12 +316,12 @@ def __init__(self, advertisement_status: AdvertisementStatusResource) -> None:
316316

317317
self.edit = ( # pyright: ignore[reportDeprecated]
318318
to_streamed_response_wrapper(
319-
advertisement_status.edit # pyright: ignore[reportDeprecated],
319+
advertisement_status.edit, # pyright: ignore[reportDeprecated],
320320
)
321321
)
322322
self.get = ( # pyright: ignore[reportDeprecated]
323323
to_streamed_response_wrapper(
324-
advertisement_status.get # pyright: ignore[reportDeprecated],
324+
advertisement_status.get, # pyright: ignore[reportDeprecated],
325325
)
326326
)
327327

@@ -332,11 +332,11 @@ def __init__(self, advertisement_status: AsyncAdvertisementStatusResource) -> No
332332

333333
self.edit = ( # pyright: ignore[reportDeprecated]
334334
async_to_streamed_response_wrapper(
335-
advertisement_status.edit # pyright: ignore[reportDeprecated],
335+
advertisement_status.edit, # pyright: ignore[reportDeprecated],
336336
)
337337
)
338338
self.get = ( # pyright: ignore[reportDeprecated]
339339
async_to_streamed_response_wrapper(
340-
advertisement_status.get # pyright: ignore[reportDeprecated],
340+
advertisement_status.get, # pyright: ignore[reportDeprecated],
341341
)
342342
)

src/cloudflare/resources/api_gateway/operations/schema_validation.py

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -369,17 +369,17 @@ def __init__(self, schema_validation: SchemaValidationResource) -> None:
369369

370370
self.update = ( # pyright: ignore[reportDeprecated]
371371
to_raw_response_wrapper(
372-
schema_validation.update # pyright: ignore[reportDeprecated],
372+
schema_validation.update, # pyright: ignore[reportDeprecated],
373373
)
374374
)
375375
self.edit = ( # pyright: ignore[reportDeprecated]
376376
to_raw_response_wrapper(
377-
schema_validation.edit # pyright: ignore[reportDeprecated],
377+
schema_validation.edit, # pyright: ignore[reportDeprecated],
378378
)
379379
)
380380
self.get = ( # pyright: ignore[reportDeprecated]
381381
to_raw_response_wrapper(
382-
schema_validation.get # pyright: ignore[reportDeprecated],
382+
schema_validation.get, # pyright: ignore[reportDeprecated],
383383
)
384384
)
385385

@@ -390,17 +390,17 @@ def __init__(self, schema_validation: AsyncSchemaValidationResource) -> None:
390390

391391
self.update = ( # pyright: ignore[reportDeprecated]
392392
async_to_raw_response_wrapper(
393-
schema_validation.update # pyright: ignore[reportDeprecated],
393+
schema_validation.update, # pyright: ignore[reportDeprecated],
394394
)
395395
)
396396
self.edit = ( # pyright: ignore[reportDeprecated]
397397
async_to_raw_response_wrapper(
398-
schema_validation.edit # pyright: ignore[reportDeprecated],
398+
schema_validation.edit, # pyright: ignore[reportDeprecated],
399399
)
400400
)
401401
self.get = ( # pyright: ignore[reportDeprecated]
402402
async_to_raw_response_wrapper(
403-
schema_validation.get # pyright: ignore[reportDeprecated],
403+
schema_validation.get, # pyright: ignore[reportDeprecated],
404404
)
405405
)
406406

@@ -411,17 +411,17 @@ def __init__(self, schema_validation: SchemaValidationResource) -> None:
411411

412412
self.update = ( # pyright: ignore[reportDeprecated]
413413
to_streamed_response_wrapper(
414-
schema_validation.update # pyright: ignore[reportDeprecated],
414+
schema_validation.update, # pyright: ignore[reportDeprecated],
415415
)
416416
)
417417
self.edit = ( # pyright: ignore[reportDeprecated]
418418
to_streamed_response_wrapper(
419-
schema_validation.edit # pyright: ignore[reportDeprecated],
419+
schema_validation.edit, # pyright: ignore[reportDeprecated],
420420
)
421421
)
422422
self.get = ( # pyright: ignore[reportDeprecated]
423423
to_streamed_response_wrapper(
424-
schema_validation.get # pyright: ignore[reportDeprecated],
424+
schema_validation.get, # pyright: ignore[reportDeprecated],
425425
)
426426
)
427427

@@ -432,16 +432,16 @@ def __init__(self, schema_validation: AsyncSchemaValidationResource) -> None:
432432

433433
self.update = ( # pyright: ignore[reportDeprecated]
434434
async_to_streamed_response_wrapper(
435-
schema_validation.update # pyright: ignore[reportDeprecated],
435+
schema_validation.update, # pyright: ignore[reportDeprecated],
436436
)
437437
)
438438
self.edit = ( # pyright: ignore[reportDeprecated]
439439
async_to_streamed_response_wrapper(
440-
schema_validation.edit # pyright: ignore[reportDeprecated],
440+
schema_validation.edit, # pyright: ignore[reportDeprecated],
441441
)
442442
)
443443
self.get = ( # pyright: ignore[reportDeprecated]
444444
async_to_streamed_response_wrapper(
445-
schema_validation.get # pyright: ignore[reportDeprecated],
445+
schema_validation.get, # pyright: ignore[reportDeprecated],
446446
)
447447
)

src/cloudflare/resources/api_gateway/settings/schema_validation.py

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -411,17 +411,17 @@ def __init__(self, schema_validation: SchemaValidationResource) -> None:
411411

412412
self.update = ( # pyright: ignore[reportDeprecated]
413413
to_raw_response_wrapper(
414-
schema_validation.update # pyright: ignore[reportDeprecated],
414+
schema_validation.update, # pyright: ignore[reportDeprecated],
415415
)
416416
)
417417
self.edit = ( # pyright: ignore[reportDeprecated]
418418
to_raw_response_wrapper(
419-
schema_validation.edit # pyright: ignore[reportDeprecated],
419+
schema_validation.edit, # pyright: ignore[reportDeprecated],
420420
)
421421
)
422422
self.get = ( # pyright: ignore[reportDeprecated]
423423
to_raw_response_wrapper(
424-
schema_validation.get # pyright: ignore[reportDeprecated],
424+
schema_validation.get, # pyright: ignore[reportDeprecated],
425425
)
426426
)
427427

@@ -432,17 +432,17 @@ def __init__(self, schema_validation: AsyncSchemaValidationResource) -> None:
432432

433433
self.update = ( # pyright: ignore[reportDeprecated]
434434
async_to_raw_response_wrapper(
435-
schema_validation.update # pyright: ignore[reportDeprecated],
435+
schema_validation.update, # pyright: ignore[reportDeprecated],
436436
)
437437
)
438438
self.edit = ( # pyright: ignore[reportDeprecated]
439439
async_to_raw_response_wrapper(
440-
schema_validation.edit # pyright: ignore[reportDeprecated],
440+
schema_validation.edit, # pyright: ignore[reportDeprecated],
441441
)
442442
)
443443
self.get = ( # pyright: ignore[reportDeprecated]
444444
async_to_raw_response_wrapper(
445-
schema_validation.get # pyright: ignore[reportDeprecated],
445+
schema_validation.get, # pyright: ignore[reportDeprecated],
446446
)
447447
)
448448

@@ -453,17 +453,17 @@ def __init__(self, schema_validation: SchemaValidationResource) -> None:
453453

454454
self.update = ( # pyright: ignore[reportDeprecated]
455455
to_streamed_response_wrapper(
456-
schema_validation.update # pyright: ignore[reportDeprecated],
456+
schema_validation.update, # pyright: ignore[reportDeprecated],
457457
)
458458
)
459459
self.edit = ( # pyright: ignore[reportDeprecated]
460460
to_streamed_response_wrapper(
461-
schema_validation.edit # pyright: ignore[reportDeprecated],
461+
schema_validation.edit, # pyright: ignore[reportDeprecated],
462462
)
463463
)
464464
self.get = ( # pyright: ignore[reportDeprecated]
465465
to_streamed_response_wrapper(
466-
schema_validation.get # pyright: ignore[reportDeprecated],
466+
schema_validation.get, # pyright: ignore[reportDeprecated],
467467
)
468468
)
469469

@@ -474,16 +474,16 @@ def __init__(self, schema_validation: AsyncSchemaValidationResource) -> None:
474474

475475
self.update = ( # pyright: ignore[reportDeprecated]
476476
async_to_streamed_response_wrapper(
477-
schema_validation.update # pyright: ignore[reportDeprecated],
477+
schema_validation.update, # pyright: ignore[reportDeprecated],
478478
)
479479
)
480480
self.edit = ( # pyright: ignore[reportDeprecated]
481481
async_to_streamed_response_wrapper(
482-
schema_validation.edit # pyright: ignore[reportDeprecated],
482+
schema_validation.edit, # pyright: ignore[reportDeprecated],
483483
)
484484
)
485485
self.get = ( # pyright: ignore[reportDeprecated]
486486
async_to_streamed_response_wrapper(
487-
schema_validation.get # pyright: ignore[reportDeprecated],
487+
schema_validation.get, # pyright: ignore[reportDeprecated],
488488
)
489489
)

src/cloudflare/resources/api_gateway/user_schemas/hosts.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ def __init__(self, hosts: HostsResource) -> None:
182182

183183
self.list = ( # pyright: ignore[reportDeprecated]
184184
to_raw_response_wrapper(
185-
hosts.list # pyright: ignore[reportDeprecated],
185+
hosts.list, # pyright: ignore[reportDeprecated],
186186
)
187187
)
188188

@@ -193,7 +193,7 @@ def __init__(self, hosts: AsyncHostsResource) -> None:
193193

194194
self.list = ( # pyright: ignore[reportDeprecated]
195195
async_to_raw_response_wrapper(
196-
hosts.list # pyright: ignore[reportDeprecated],
196+
hosts.list, # pyright: ignore[reportDeprecated],
197197
)
198198
)
199199

@@ -204,7 +204,7 @@ def __init__(self, hosts: HostsResource) -> None:
204204

205205
self.list = ( # pyright: ignore[reportDeprecated]
206206
to_streamed_response_wrapper(
207-
hosts.list # pyright: ignore[reportDeprecated],
207+
hosts.list, # pyright: ignore[reportDeprecated],
208208
)
209209
)
210210

@@ -215,6 +215,6 @@ def __init__(self, hosts: AsyncHostsResource) -> None:
215215

216216
self.list = ( # pyright: ignore[reportDeprecated]
217217
async_to_streamed_response_wrapper(
218-
hosts.list # pyright: ignore[reportDeprecated],
218+
hosts.list, # pyright: ignore[reportDeprecated],
219219
)
220220
)

src/cloudflare/resources/api_gateway/user_schemas/operations.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ def __init__(self, operations: OperationsResource) -> None:
244244

245245
self.list = ( # pyright: ignore[reportDeprecated]
246246
to_raw_response_wrapper(
247-
operations.list # pyright: ignore[reportDeprecated],
247+
operations.list, # pyright: ignore[reportDeprecated],
248248
)
249249
)
250250

@@ -255,7 +255,7 @@ def __init__(self, operations: AsyncOperationsResource) -> None:
255255

256256
self.list = ( # pyright: ignore[reportDeprecated]
257257
async_to_raw_response_wrapper(
258-
operations.list # pyright: ignore[reportDeprecated],
258+
operations.list, # pyright: ignore[reportDeprecated],
259259
)
260260
)
261261

@@ -266,7 +266,7 @@ def __init__(self, operations: OperationsResource) -> None:
266266

267267
self.list = ( # pyright: ignore[reportDeprecated]
268268
to_streamed_response_wrapper(
269-
operations.list # pyright: ignore[reportDeprecated],
269+
operations.list, # pyright: ignore[reportDeprecated],
270270
)
271271
)
272272

@@ -277,6 +277,6 @@ def __init__(self, operations: AsyncOperationsResource) -> None:
277277

278278
self.list = ( # pyright: ignore[reportDeprecated]
279279
async_to_streamed_response_wrapper(
280-
operations.list # pyright: ignore[reportDeprecated],
280+
operations.list, # pyright: ignore[reportDeprecated],
281281
)
282282
)

0 commit comments

Comments
 (0)