Skip to content

Commit 5d05cc1

Browse files
Implement temporary workaround for taints issue
1 parent 634afeb commit 5d05cc1

3 files changed

Lines changed: 4 additions & 80626 deletions

File tree

Makefile

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,6 @@ ifdef TEST_CASE
99
TEST_CASE_COMMAND = -k $(TEST_CASE)
1010
endif
1111

12-
# TODO: Revert this once the corrected spec is available.
13-
SPEC := ./openapi.yaml.tmp
14-
1512
SPEC_VERSION ?= latest
1613
ifndef SPEC
1714
override SPEC = $(shell ./resolve_spec_url ${SPEC_VERSION})

linodecli/baked/operation.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -591,6 +591,10 @@ def _add_args_post_put(
591591
arg.item_type if arg.datatype == "array" else arg.datatype
592592
)
593593

594+
# # TODO: Remove this workaround once the LKE docs issue has been resolved
595+
if arg_type is None:
596+
arg_type = "object"
597+
594598
arg_type_handler = TYPES[arg_type]
595599

596600
if arg.nullable:

0 commit comments

Comments
 (0)