hoffstadt / DearPyGui_Ext

Dear PyGui Extensions: A collection of useful tools, abstractions, and simplification layers built with/for Dear PyGui users.
https://dearpygui-ext.readthedocs.io/en/latest/
MIT License
78 stars 13 forks source link

Replace tabs with spaces #15

Open jhgorse opened 9 months ago

jhgorse commented 9 months ago

Consider spaces:

https://github.com/hoffstadt/DearPyGui_Ext/blob/2dcc147c2f3bb2467f70cfbf7521203fb006f4a5/dearpygui_ext/logger.py#L66C46-L66C46

        if level == 0:
            message = "[TRACE]    " + message
            theme = self.trace_theme
        elif level == 1:
            message = "[DEBUG]    " + message
            theme = self.debug_theme
        elif level == 2:
            message = "[INFO]     " + message
        elif level == 3:
            message = "[WARNING]  " + message
            theme = self.warning_theme
        elif level == 4:
            message = "[ERROR]    " + message
            theme = self.error_theme
        elif level == 5:
            message = "[CRITICAL] " + message
            theme = self.critical_theme