switched from tabs to spaces lmao

This commit is contained in:
2026-02-04 19:47:16 +11:00
parent cc2da06ac1
commit 9b32c417e9
4 changed files with 148 additions and 137 deletions

View File

@@ -0,0 +1,11 @@
from textual.screen import Screen
from textual.app import ComposeResult
from widgets import Navbar
class RepoViewScreen(Screen):
def __init__(self, repo_id: int):
super().__init__(self)
def compose(self) -> ComposeResult:
yield Navbar()