Dane Sabo 3299181c70 Auto sync: 2025-09-02 22:47:53 (10335 files changed)
M  lazy-lock.json

M  lua/custom/configs/lspconfig.lua

M  lua/custom/init.lua

A  lua/custom/journal.lua

A  nvim_venv/bin/Activate.ps1

A  nvim_venv/bin/activate

A  nvim_venv/bin/activate.csh

A  nvim_venv/bin/activate.fish
2025-09-02 22:47:53 -04:00

20 lines
326 B
Python

from typing import cast
from enum import Enum
class JoinStyle(str, Enum):
miter = "miter"
round = "round"
bevel = "bevel"
@staticmethod
def demo() -> None: ...
class CapStyle(str, Enum):
butt = "butt"
projecting = "projecting"
round = "round"
@staticmethod
def demo() -> None: ...