123456789101112131415 |
- # greaseweazle/image/ssd.py
- #
- # Written & released by Keir Fraser <keir.xen@gmail.com>
- #
- # This is free and unencumbered software released into the public domain.
- # See the file COPYING for more details, or visit <http://unlicense.org>.
- from greaseweazle.image.img import IMG
- class SSD(IMG):
- default_format = 'acorn.dfs.ss'
- # Local variables:
- # python-indent: 4
- # End:
|