Skip to content

Commit fb071f6

Browse files
Update linodecli/configuration/config.py
Co-authored-by: Copilot <[email protected]>
1 parent 9e2e2c9 commit fb071f6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

linodecli/configuration/config.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -250,10 +250,10 @@ def plugin_get_value(
250250
if value is None:
251251
return default
252252

253-
if value_type is str:
253+
if value_type == str:
254254
return value
255255

256-
if value_type is bool:
256+
if value_type == bool:
257257
bool_value = self.parse_boolean(value)
258258
return bool_value if bool_value is not None else default
259259

0 commit comments

Comments
 (0)