Fix: Formateo PEP8

This commit is contained in:
2024-08-14 12:50:53 -05:00
parent 9f7349ccee
commit fb44498e53
6 changed files with 445 additions and 303 deletions

View File

@@ -2,13 +2,14 @@ from .. import fe
__all__ = ['AttachedDocument']
class AttachedDocument():
def __init__(self, id):
schema = 'urn:oasis:names:specification:ubl:schema:xsd:AttachedDocument-2'
schema =\
'urn:oasis:names:specification:ubl:schema:xsd:AttachedDocument-2'
self.fexml = fe.FeXML('AttachedDocument', schema)
self.fexml.set_element('./cbc:ID', id)
def toFachoXML(self):
return self.fexml