Skip to content

Commit 5f385ca

Browse files
committed
clean comments
1 parent 97efab9 commit 5f385ca

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

folium/features.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,6 @@ def __init__(self, data, width=None, height=None,
209209
super(Vega, self).__init__()
210210
self._name = 'Vega'
211211
self.data = data.to_json() if hasattr(data, 'to_json') else data
212-
# FIXME:
213212
if isinstance(self.data, text_type) or isinstance(data, binary_type):
214213
self.data = json.loads(self.data)
215214

@@ -301,7 +300,6 @@ def __init__(self, data, width=None, height=None,
301300
super(VegaLite, self).__init__()
302301
self._name = 'VegaLite'
303302
self.data = data.to_json() if hasattr(data, 'to_json') else data
304-
# FIXME:
305303
if isinstance(self.data, text_type) or isinstance(data, binary_type):
306304
self.data = json.loads(self.data)
307305

0 commit comments

Comments
 (0)