From 0755e93695cb82a47d77002eb9295df8238629b0 Mon Sep 17 00:00:00 2001 From: perro Date: Thu, 26 Jan 2023 11:19:31 -0800 Subject: [PATCH] Algo de formato --- .gitignore | 1 + yasd.py | 2 ++ 2 files changed, 3 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b3eef85 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.yasd.py@* diff --git a/yasd.py b/yasd.py index bd10483..f821bf9 100755 --- a/yasd.py +++ b/yasd.py @@ -84,6 +84,7 @@ class YASD: :param stdout: if sample goes to stdout or not; 'False' by default :type stdout: True or False """ + # TODO: XML sample self.out = "TODO: XML sample" if stdout: self.__output() @@ -97,6 +98,7 @@ class YASD: :param stdout: if document goes to stdout or not; 'False' by default :type stdout: True or False """ + # TODO: RST document self.out = f"TODO: RST document from :{self.__dict__}" if stdout: self.__output()