Hey, I'm getting an error for unexpected indent. However, when I change the file, like removing all contents and saving, I still get the same error for the same line of code (which shouldnt exists)
Alright, so from the beginning... this is the error:
File "/home/ubuntu/innova/backend/app/main.py", line 121, in <module>
from app.api.v1.endpoints import auth, users, roles, permissions, admin, blog, shortcuts, page, market_guard
File "/home/ubuntu/innova/backend/app/api/v1/endpoints/auth.py", line 7, in <module>
from app.api import deps
File "/home/ubuntu/innova/backend/app/api/deps.py", line 9, in <module>
from app.setup.config import settings
File "/home/ubuntu/innova/backend/app/setup/config.py", line 30
DB_HOST: str = os.getenv("DB_HOST")
IndentationError: unexpected indent```
I ran the program using this command: `uvicorn app.main:app --reload` I tried it without the reload flag as well. Same result.
Like I said, even when removing all contents from config.py I still get the exact same error for line 30.
Has someone here encountered a similar problem? What am I missing?
