Skip to content

Commit 30c090d

Browse files
committed
Fix lint/fmt
1 parent 20e1856 commit 30c090d

File tree

1 file changed

+1
-4
lines changed
  • experimental/python/codegen/codegen

1 file changed

+1
-4
lines changed

experimental/python/codegen/codegen/main.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -247,10 +247,7 @@ def _collect_reachable_schemas(
247247
if not include_private and field.stage == openapi.Stage.PRIVATE:
248248
continue
249249

250-
if (
251-
not include_deprecated
252-
and field.deprecated
253-
):
250+
if not include_deprecated and field.deprecated:
254251
continue
255252

256253
if name not in reachable:

0 commit comments

Comments
 (0)