Skip to content

Commit c795b3b

Browse files
committed
use double-quotes as suggested by black
1 parent 6d5e1d7 commit c795b3b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/python/plotly/plotly/basedatatypes.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4777,7 +4777,7 @@ def __contains__(self, prop):
47774777
else:
47784778
return False
47794779
else:
4780-
if hasattr(obj, '_valid_props') and p in obj._valid_props:
4780+
if hasattr(obj, "_valid_props") and p in obj._valid_props:
47814781
obj = obj[p]
47824782
else:
47834783
return False

0 commit comments

Comments
 (0)