Run ruff format changes and finalize indentation and lint fixes.

This commit is contained in:
William Valentin
2025-08-09 12:10:16 -07:00
parent 9cec07e9f6
commit 9a5a2f0022
68 changed files with 1272 additions and 4301 deletions

View File

@@ -32,7 +32,7 @@ make run
```
### First Steps
1. **Launch TheChart** using `make run` or `python src/main.py`
1. **Launch TheChart** using `make run` or `python -m thechart`
2. **Add your first entry** using Ctrl+S
3. **Explore features** with the keyboard shortcuts (F1 for help)
4. **Customize settings** with F2 or through the Theme menu
@@ -439,7 +439,7 @@ The UI flickering issue during scrolling has been resolved in the latest version
4. Review export logs for specific errors
### Debug Mode
Enable debug logging by setting the log level in `src/constants.py`:
Enable debug logging by setting the log level via environment or in `thechart.core.constants`:
```python
LOG_LEVEL = "DEBUG"
```