From 349caf97e6aeecd27f5ec9b14e888436bc60d039 Mon Sep 17 00:00:00 2001 From: Tardi1 Date: Tue, 28 Oct 2025 16:28:53 +0300 Subject: [PATCH 1/2] Add files via upload --- main.py | 1 + 1 file changed, 1 insertion(+) create mode 100644 main.py diff --git a/main.py b/main.py new file mode 100644 index 0000000..b917a72 --- /dev/null +++ b/main.py @@ -0,0 +1 @@ +print(1) From abf5d248b4a6af8a24ec513966a56cacb0636dd6 Mon Sep 17 00:00:00 2001 From: Tardi1 Date: Tue, 28 Oct 2025 17:05:42 +0300 Subject: [PATCH 2/2] add devcontainer --- .devcontainer/devcontainer.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .devcontainer/devcontainer.json diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 0000000..8c1753e --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,12 @@ +{ + "name": "team-python-env", + "image": "mcr.microsoft.com/devcontainers/python:3.13-bullseye", + "customizations": { + "vscode": { + "extensions": [ + "ms-python.python", + "ms-python.debugpy" + ] + } + } +}