Skip to content

Commit

Permalink
changes on comments
Browse files Browse the repository at this point in the history
  • Loading branch information
markur4 committed Dec 5, 2023
1 parent a172491 commit 1a571b4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
3 changes: 2 additions & 1 deletion src/plotastic/dimensions/dimsandlevels.py
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,8 @@ def levels_dict_dim(self) -> dict:

@property #' [(R_lvl1, R_lvl2), (C_lvl1, C_lvl2), (hue_lvl1, hue_lvl2), (x_lvl1, x_lvl2)]
def levels_tuples(self) -> list[tuple]:
"""Returns: [(R_lvl1, R_lvl2), (C_lvl1, C_lvl2), (hue_lvl1, hue_lvl2), (x_lvl1, x_lvl2)]"""
"""Returns: [(R_lvl1, R_lvl2), (C_lvl1, C_lvl2), (x_lvl1,
x_lvl2), (hue_lvl1, hue_lvl2)]"""
return [
tuple(l) for l in self.levels_dict_factor.values() if not l is None
]
Expand Down
5 changes: 2 additions & 3 deletions src/plotastic/plotting/plottool.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ class PlotTool(DataFrameTool):
"rel": "https://seaborn.pydata.org/generated/seaborn.relplot.html#seaborn.relplot",
}

# ==__INIT__ =======================================================================
# ==__INIT__ =======================================================

def __init__(self, **dataframetool_kws):
"""
Expand Down Expand Up @@ -143,8 +143,7 @@ def __init__(self, **dataframetool_kws):
#
#

# == ITERATORS =====================================================================

# == ITERATORS =====================================================
#
### NESTED / FLAT....................................#

Expand Down

0 comments on commit 1a571b4

Please sign in to comment.