home · contact · privacy
Remove unused code.
authorPlom Heller <plom@plomlompom.com>
Sat, 30 May 2026 02:18:20 +0000 (04:18 +0200)
committerPlom Heller <plom@plomlompom.com>
Sat, 30 May 2026 02:18:20 +0000 (04:18 +0200)
bricksplom.py

index 87adc830b6e6de5c1551093a2eae412c91b941b1..5daadefb5179ab057ef15e7c87bb72dcdceef2da 100755 (executable)
@@ -564,19 +564,6 @@ class BricksDb:
         item = table[inquiry]
         return item.raw() if show_raw else item.show()
 
-    def print(
-            self
-            ) -> None:
-        'Show all we know.'
-        for title, items in (('COLORS', self.colors),
-                             ('PIECES', self.pieces),
-                             ('DESIGNS', self.designs),
-                             ('BOXES', self.boxes()),
-                             ('COLLECTIONS', self.collections)):
-            print(title)
-            for item in items.values():
-                print(item)
-
 
 def main(
         ) -> None: