DearPyGui_Ext icon indicating copy to clipboard operation
DearPyGui_Ext copied to clipboard

Replace tabs with spaces

Open jhgorse opened this issue 2 years ago • 0 comments

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

jhgorse avatar Nov 28 '23 15:11 jhgorse