Skip to content

Commit 1cd3738

Browse files
author
wjm41
committed
fixed typos
1 parent 30feef7 commit 1cd3738

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

molplotly/main.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ def find_grouping(
6868
col_names = [re.sub(r"(.*)>", "", col_name) for col_name in col_names]
6969
if set(cols).issubset(set(col_names)) is False:
7070
raise ValueError(
71-
f"marker_col/color_col/facet_col is misspecified because the specified dataframe grouping names {cols} don't match the names in the plotly figure {col_names}.",
71+
f"symbol_col/color_col/facet_col is misspecified because the specified dataframe grouping names {cols} don't match the names in the plotly figure {col_names}.",
7272
)
7373

7474
cols = find_correct_column_order(cols, col_names)
@@ -133,7 +133,7 @@ def find_grouping(
133133

134134
if not grouping_found:
135135
raise ValueError(
136-
"marker_col/color_col/facet_cik is misspecified because the dataframe grouping names don't match the names in the plotly figure."
136+
"symbol_col/color_col/facet_col is misspecified because the dataframe grouping names don't match the names in the plotly figure."
137137
)
138138

139139

@@ -152,7 +152,6 @@ def add_molecules(
152152
caption_transform: dict[str, Callable] = {},
153153
color_col: str = None,
154154
symbol_col: str = None,
155-
marker_col: str = None,
156155
facet_col: str = None,
157156
wrap: bool = True,
158157
wraplen: int = 20,

0 commit comments

Comments
 (0)