diff options
author | emkael <emkael@tlen.pl> | 2019-05-20 23:58:50 +0200 |
---|---|---|
committer | emkael <emkael@tlen.pl> | 2019-05-20 23:58:50 +0200 |
commit | 8bf8380af6db557420595128816d23212ebfe7f7 (patch) | |
tree | 40aae7a1978bc2e80be9b9e9ed78c321eb578df0 /dealconvert/formats/rzd.py | |
parent | 627b3aa689674498068d45487f3325b488c32de0 (diff) |
PBN format support + framework for other formats
Diffstat (limited to 'dealconvert/formats/rzd.py')
-rw-r--r-- | dealconvert/formats/rzd.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/dealconvert/formats/rzd.py b/dealconvert/formats/rzd.py new file mode 100644 index 0000000..e663500 --- /dev/null +++ b/dealconvert/formats/rzd.py @@ -0,0 +1,6 @@ +from . import DealFormat + +class RZDFormat(DealFormat): + @property + def suffix(self): + return '.rzd' |