From: Henryk Plötz Date: Sun, 26 Aug 2018 20:10:57 +0000 (+0200) Subject: Remove last OLD X-Git-Tag: v2.0.0~1^2~74 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e6de833cdb60e3272783f9cd1ace5dedbd0f82f1;p=thirdparty%2Fpython-fints.git Remove last OLD --- diff --git a/fints/segments/__init__.py b/fints/segments/__init__.py index e7f101c..b132b47 100644 --- a/fints/segments/__init__.py +++ b/fints/segments/__init__.py @@ -17,19 +17,6 @@ from fints.utils import SubclassesMixin, classproperty TYPE_VERSION_RE = re.compile(r'^([A-Z]+)(\d+)$') -class FinTS3SegmentOLD: - type = '???' - country_code = 280 - version = 2 - def __init__(self, segmentno, data): - self.segmentno = segmentno - self.data = data - def __str__(self): - res = '{}:{}:{}'.format(self.type, self.segmentno, self.version) - for d in self.data: - res += '+' + str(d) - return res + "'" - class FinTS3SegmentMeta(ContainerMeta): @staticmethod def _check_fields_recursive(instance):