Moosems
Moosems
If you use the clam theme on Macosx and create a few tabs the buttons will not cover the entire tab and it looks kind of janky. Code: ```python from...
When I create a tab it gives the error: ``` Traceback (most recent call last): File "/Users/joshyacktman/Documents/PyApps/Working/JDE/test2.py", line 155, in notebook.add(text_piece, text="Untitled") File "/Users/joshyacktman/Documents/PyApps/Working/JDE/ttkScrollableNotebook.py", line 67, in add if len(self.notebookTab.winfo_children())!=0:...
Gives error: ``` Traceback (most recent call last): File "/Users/Moosems/Desktop/JDE/JDE.py", line 72, in main_notebook.tab(text_boxes[current_focus], text="Untitled.py") File "/Users/Moosems/Desktop/JDE/ttkScrollableNotebook.py", line 202, in tab self.notebookContent.tab(self.__ContentTabID(tab_id), option=None, **kwargs_Content) File "/Users/Moosems/Desktop/JDE/ttkScrollableNotebook.py", line 189, in __ContentTabID...
By default all arguments are entered as strings in the Command Line so having an argument to turn a string into a requested type or give a failure message if...
### Problem I was hoping to learn how to use tree sitter to get syntax highlighting but the example doesn't work. https://github.com/tree-sitter/tree-sitter/blob/master/highlight/README.md ### Steps to reproduce cargo init test-highlight Edit...
Breaking example I found in my own usage: ```python from beartype import beartype from multiprocessing import Queue from typing import TypedDict class SpecialDict(TypedDict): pass class Example: @beartype def __init__(self, list1:...
**Is your feature request related to a problem? Please describe.** Kinda outdated, could be updated. **Describe the solution you'd like** Updated for newer features and change
If I want to use `ruff server` as a user and know the command to use and the specific initialization parameters/runtime dependencies it might require, it doesn't seem like it...
MRE: ```python from time import time def main(): st = time() print("Wowzers! It started!") et = time() - st print("Script time: ", et) if __name__ == "__main__": main() ``` Terminal...