Skip to content

Commit

Permalink
Fix lint error in Python CI (#8034)
Browse files Browse the repository at this point in the history
  • Loading branch information
ajduberstein authored and Pessimistress committed Aug 3, 2023
1 parent 61c8e97 commit 6fd4d8a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bindings/pydeck/pydeck/io/html.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def in_jupyter():


def convert_js_bool(py_bool):
if type(py_bool) != bool:
if type(py_bool) is bool:
return py_bool
return "true" if py_bool else "false"

Expand Down

0 comments on commit 6fd4d8a

Please sign in to comment.