MCPcopy Create free account
hub / github.com/explorerhq/sql-explorer / ColumnHeader

Class ColumnHeader

explorer/models.py:361–371  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

359
360
361class ColumnHeader:
362
363 def __init__(self, title):
364 self.title = title.strip()
365 self.summary = None
366
367 def add_summary(self, column):
368 self.summary = ColumnSummary(self, column)
369
370 def __str__(self):
371 return self.title
372
373
374class ColumnStat:

Calls

no outgoing calls