We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 634afeb commit 5d05cc1Copy full SHA for 5d05cc1
3 files changed
Makefile
@@ -9,9 +9,6 @@ ifdef TEST_CASE
9
TEST_CASE_COMMAND = -k $(TEST_CASE)
10
endif
11
12
-# TODO: Revert this once the corrected spec is available.
13
-SPEC := ./openapi.yaml.tmp
14
-
15
SPEC_VERSION ?= latest
16
ifndef SPEC
17
override SPEC = $(shell ./resolve_spec_url ${SPEC_VERSION})
linodecli/baked/operation.py
@@ -591,6 +591,10 @@ def _add_args_post_put(
591
arg.item_type if arg.datatype == "array" else arg.datatype
592
)
593
594
+ # # TODO: Remove this workaround once the LKE docs issue has been resolved
595
+ if arg_type is None:
596
+ arg_type = "object"
597
+
598
arg_type_handler = TYPES[arg_type]
599
600
if arg.nullable:
0 commit comments