From d71cde94ef1081e5d5300f586f7229be2e752f33 Mon Sep 17 00:00:00 2001 From: alexpeters1208 Date: Tue, 3 Sep 2024 10:42:02 -0500 Subject: [PATCH] Simplify, docstring from Javadoc --- py/server/deephaven/table.py | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/py/server/deephaven/table.py b/py/server/deephaven/table.py index 1938af5dcf7..e02307f647e 100644 --- a/py/server/deephaven/table.py +++ b/py/server/deephaven/table.py @@ -817,11 +817,8 @@ def flatten(self) -> Table: return Table(j_table=self.j_table.flatten()) def remove_blink(self) -> Table: - """Returns a new version of this table without specialized blink table aggregation semantics.""" - try: - return Table(j_table=self.j_table.removeBlink()) - except Exception as e: - raise DHError(e, "failed to remove blink table semantics.") from e + """Returns a non-blink child table, or this table if it is not a blink table.""" + return Table(j_table=self.j_table.removeBlink()) def snapshot(self) -> Table: """Returns a static snapshot table.