Skip to content

Commit c1727d8

Browse files
committed
removed commented out code for old get_uid code
1 parent 405e71d commit c1727d8

File tree

1 file changed

+0
-13
lines changed

1 file changed

+0
-13
lines changed

plotly/grid_objs/grid_objs.py

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -268,16 +268,3 @@ def get_fid_uid(self, column_name):
268268
uid = column.id
269269
break
270270
return uid
271-
272-
# def get_fid_uid(self, column_name):
273-
# """
274-
# Return the fid:uid string of given column in the grid by column name.
275-
#
276-
# Returns just the fid: string if the column name is not in the grid.
277-
# """
278-
# uid = ''
279-
# for column in self._columns:
280-
# if column.name == column_name:
281-
# uid = column.id
282-
# break
283-
# return self._fid + ':' + uid

0 commit comments

Comments
 (0)