mirror of
https://github.com/furrysalamander/rubedo.git
synced 2025-09-26 23:29:12 +08:00

Cleaned up a lot of code. Some things are still kind of messy, but it's a vast improvement over what I used to have. Data is easy to pass around the system, and the pattern info has proved invaluable for cleanly connecting prints, scans, and analysis.
8 lines
217 B
Python
8 lines
217 B
Python
from pattern_info import PatternInfo
|
|
|
|
class PaScan:
|
|
def __init__(self, pattern_info: PatternInfo, video_files) -> None:
|
|
self.pattern_info = pattern_info
|
|
self.video_files = video_files
|
|
pass
|