Skip to content

Commit

Permalink
Different logic
Browse files Browse the repository at this point in the history
  • Loading branch information
markfairbanks committed Nov 2, 2024
1 parent 0d93d6f commit 937ebb9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tidypolars/tibble_df.py
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ def glimpse(self):
The formatting shows one line per column so that wide dataframes display cleanly.
Each line shows the column name, the data type, and the first few values.
"""
return super().glimpse()
return self.as_polars().glimpse()

def fill(self, *args, direction = 'down', _by = None):
"""
Expand Down

0 comments on commit 937ebb9

Please sign in to comment.