home
·
contact
·
privacy
projects
/
bricksplom
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
53c2d04
)
Remove unused code.
author
Plom Heller
<plom@plomlompom.com>
Sat, 30 May 2026 02:18:20 +0000
(
04:18
+0200)
committer
Plom Heller
<plom@plomlompom.com>
Sat, 30 May 2026 02:18:20 +0000
(
04:18
+0200)
bricksplom.py
patch
|
blob
|
history
diff --git
a/bricksplom.py
b/bricksplom.py
index 87adc830b6e6de5c1551093a2eae412c91b941b1..5daadefb5179ab057ef15e7c87bb72dcdceef2da 100755
(executable)
--- a/
bricksplom.py
+++ b/
bricksplom.py
@@
-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: