From 8b496f701caed30e8ce43f5797678e1dc9ead694 Mon Sep 17 00:00:00 2001 From: Andrew Sazonov Date: Mon, 2 Sep 2024 08:56:21 +0200 Subject: [PATCH] Update readme [ci skip] --- EXAMPLES.md | 2 +- examples/AdvancedPy/README.md | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/EXAMPLES.md b/EXAMPLES.md index a20c6a6..c4182ce 100644 --- a/EXAMPLES.md +++ b/EXAMPLES.md @@ -66,7 +66,7 @@ VS Code is an alternative IDE to Qt Creator. It has a syntax highlighting plugin * Download an install VS Code * Add the python extension -* Rename the folder `vscode` to `.vscode`. The `launch.json` file will then be read by VS Code +* The initial launch configuration is in the `.vscode/launch.json` file, which should be automatically read by VS Code * Select any python file in the repo and choose the desired python environment ## How to run diff --git a/examples/AdvancedPy/README.md b/examples/AdvancedPy/README.md index 6c78a8f..c36a7a1 100644 --- a/examples/AdvancedPy/README.md +++ b/examples/AdvancedPy/README.md @@ -27,9 +27,9 @@ │ │ │ ├── real_backend.py # Parent object for all other objects with real python logic │ └── 🗂️ real_py # Real Python backend - │ ├── status.py # Logic for the status bar - │ ├── project.py # Logic for the application page 'Project' - │ ├── report.py # Logic for the application page 'Report' + │ ├── status.py # Logic for the status bar (QObject-based) + │ ├── project.py # Logic for the application page 'Project' (QObject-based) + │ ├── report.py # Logic for the application page 'Report' (QObject-based) │ │ │ └── 🗂️ logic # Pure Python logic (not QObject-based) │ └── helpers.py # Some helper functions