parazeeknova / nyxtext

Missing class docstring PY-D0002
Documentation
Minor
2 months ago6 months old
Docstring missing for class Nyxtext
 61            print(f"Theme '{theme_name}' not found.")
 62
 63
 64class Nyxtext(CTk): 65    def __init__(self):
 66        super().__init__()
 67
Docstring missing for class sysUI
 50def_file_image = resource("misc\\icons\\file.png")  # File icon for the editor
 51
 52
 53class sysUI(CTk): 54    def __init__(self, master):
 55        super().__init__(master=master)
 56
Docstring missing for class treeView
  6import customtkinter as C
  7
  8
  9class treeView: 10    def __init__(
 11        self,
 12        parent_frame,
Docstring missing for class Menubar
  7from hPyT import *
  8
  9
 10class Menubar: 11    has_hidden_title_bar = False
 12
 13    def __init__(self, root):
Docstring missing for class TabView
 8from text_Area import textarea
 9
10
11class TabView:12    def __init__(self, right_frame, screen_width, screen_height):
13        self.tab_view = customtkinter.CTkTabview(
14            right_frame, width=int(screen_width) - 220, height=int(screen_height) - 160