merge
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
import os
|
||||
|
||||
from textual.app import App, ComposeResult
|
||||
from textual.widgets import Pretty
|
||||
|
||||
|
||||
class TerminalEnv(App):
|
||||
def compose(self) -> ComposeResult:
|
||||
yield Pretty(dict(os.environ))
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
TerminalEnv().run()
|
||||
Reference in New Issue
Block a user