diff options
Diffstat (limited to 'ATRI/configs/data_source.py')
-rw-r--r-- | ATRI/configs/data_source.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ATRI/configs/data_source.py b/ATRI/configs/data_source.py index 8794223..f0fda2c 100644 --- a/ATRI/configs/data_source.py +++ b/ATRI/configs/data_source.py @@ -9,7 +9,7 @@ class Console(C): def info(self, content: str, *args, **kwargs): text = "[blue][¡][/blue] " + content self.console.print(text, *args, **kwargs) - + def success(self, content: str, *args, **kwargs): text = "[green][√][/green] " + content self.console.print(text, *args, **kwargs) |