From 4cf0014aafa11ad008389961ab8232c7de87b687 Mon Sep 17 00:00:00 2001 From: Phillip Cloud <417981+cpcloud@users.noreply.github.com> Date: Tue, 30 Jul 2024 15:54:49 -0400 Subject: [PATCH] docs: fix typo in `drop` method docstring (#9727) --- ibis/expr/types/relations.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ibis/expr/types/relations.py b/ibis/expr/types/relations.py index 20b7469a1a17..ae9511740cdf 100644 --- a/ibis/expr/types/relations.py +++ b/ibis/expr/types/relations.py @@ -1266,7 +1266,7 @@ def distinct( │ … │ … │ … │ … │ … │ … │ └─────────┴───────────┴────────────────┴───────────────┴───────────────────┴───┘ - The only valid values of `keep` are `"first"`, `"last"` and [`None][None] + The only valid values of `keep` are `"first"`, `"last"` and [](`None`). >>> t.distinct(on="species", keep="second") # quartodoc: +EXPECTED_FAILURE Traceback (most recent call last):