Skip to content

Commit 20beb35

Browse files
committed
fixup: lint
1 parent bdc8393 commit 20beb35

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

sdks/python/apache_beam/runners/interactive/display/pcoll_visualization.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -423,8 +423,7 @@ def _display_dataframe(self, data, update=None):
423423
with warnings.catch_warnings():
424424
warnings.filterwarnings(
425425
"ignore", message=".*DataFrame.applymap has been deprecated.*")
426-
rows = data.applymap(lambda x: str(x)).to_dict('split')['data']
427-
426+
rows = data.applymap(lambda x: str(x)).to_dict('split')['data']
428427
# Convert each row into dict where keys are column index in the datatable
429428
# to be rendered and values are data from the dataframe. Column index 0 is
430429
# left out to hold the int index (not part of the data) from dataframe.

0 commit comments

Comments
 (0)