Skip to content

Commit e5ec599

Browse files
committed
Typo fix
1 parent a80345f commit e5ec599

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

book/plugins/how-to-guides/raise-visible-warning.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Warnings raised by the Python `warning` library are suppressed by defualt when using the command line interface (CLI). In order to make sure the warnings raised by your plugin are visible in the CLI you must use the `RachisWarning` subclass. This class can be imported from the QIIME2 framework, specifically from `qiime2.core.exceptions`. Below is an [excerpt](https://github.com/qiime2/q2-feature-table/blob/b6a312e612338db0f69c97641372e7f0005b43f5/q2_feature_table/_merge.py#L90C12-L93C14) from from the `q2-feature-table` plugin that raises such a `RachisWarning`.
55

66
```python
7-
from qiime2.core.excpetions import RachisWarnings
7+
from qiime2.core.exceptions import RachisWarning
88

99
def merge_taxa(data: pd.DataFrame) -> pd.DataFrame:
1010
if len(data) > 1:

0 commit comments

Comments
 (0)