imap progress

This commit is contained in:
Bryce
2025-08-04 07:34:34 -07:00
parent 34d2913165
commit 31088cf112
11 changed files with 1405 additions and 5 deletions

View File

@@ -22,3 +22,12 @@ Here are special rules you must follow:
5. When validation is done outside of a modal, it should cause a notification banner with the details.
6. Testing is done with pytest.
7. Testing is done with beautifulsoup4
8. Only use comments where necessary. Prefer self-documenting code. For example:
```
is_adult = age >= 18
```
is preferred, and this is less preferred:
```
# check if the user is an adult
x = age >= 18
```