Mercurial > touhou
view pytouhou/formats/__init__.py @ 788:f56b10812b77
Remove leftover MSG import
This should have been part of a30ce01b9154.
| author | Link Mauve <linkmauve@linkmauve.fr> |
|---|---|
| date | Sun, 04 Jan 2026 11:47:06 +0100 |
| parents | 70e2ed71b09c |
| children |
line wrap: on
line source
"""Touhou games file formats handling. This package provides modules to handle the various proprietary file formats used by Touhou games. """ class WrongFormatError(Exception): pass class ChecksumError(Exception): pass
