Skip to content

Commit

Permalink
Simplify, docstring from Javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
alexpeters1208 committed Sep 3, 2024
1 parent 8c1c65f commit d71cde9
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions py/server/deephaven/table.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit d71cde9

Please sign in to comment.