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 committed Jul 31, 2023
1 parent a21ddcc commit 418822e
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 418822e

Please sign in to comment.