Skip to content

Commit

Permalink
fix doc failing from black format
Browse files Browse the repository at this point in the history
  • Loading branch information
dorisjlee committed Nov 2, 2020
1 parent f986c76 commit 4eb2bb1
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 12 deletions.
4 changes: 2 additions & 2 deletions doc/source/reference/gen/lux.core.frame.LuxDataFrame.rst
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ lux.core.frame.LuxDataFrame
~LuxDataFrame.rec_to_JSON
~LuxDataFrame.reindex
~LuxDataFrame.reindex_like
~LuxDataFrame.removeDeletedRecs
~LuxDataFrame.remove_deleted_recs
~LuxDataFrame.rename
~LuxDataFrame.rename_axis
~LuxDataFrame.render_widget
Expand All @@ -180,6 +180,7 @@ lux.core.frame.LuxDataFrame
~LuxDataFrame.set_index
~LuxDataFrame.set_intent
~LuxDataFrame.set_intent_as_vis
~LuxDataFrame.set_intent_on_click
~LuxDataFrame.shift
~LuxDataFrame.skew
~LuxDataFrame.slice_shift
Expand Down Expand Up @@ -246,7 +247,6 @@ lux.core.frame.LuxDataFrame
~LuxDataFrame.axes
~LuxDataFrame.columns
~LuxDataFrame.current_vis
~LuxDataFrame.default_display
~LuxDataFrame.dtypes
~LuxDataFrame.empty
~LuxDataFrame.exported
Expand Down
21 changes: 11 additions & 10 deletions lux/vis/VisList.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,17 +63,18 @@ def set_intent(self, intent: List[Clause]) -> None:
@property
def exported(self) -> VisList:
"""
Get selected visualizations as exported Vis List
Notes
Get selected visualizations as exported Vis List
Notes
-----
Convert the _selectedVisIdxs dictionary into a programmable VisList
Example _selectedVisIdxs :
{'Vis List': [0, 2]}
Returns
-------
VisList
return a VisList of selected visualizations. -> VisList(v1, v2...)
Convert the _selectedVisIdxs dictionary into a programmable VisList
Example _selectedVisIdxs :
{'Vis List': [0, 2]}
Returns
-------
VisList
return a VisList of selected visualizations. -> VisList(v1, v2...)
"""
if not hasattr(self, "widget"):
warnings.warn(
Expand Down

0 comments on commit 4eb2bb1

Please sign in to comment.