I have the following files in a project folder (there are more; just listing what's relevant):
repo
|--> flask_app
    |--> app.py
    |--> helper_functions.py
If I try to import helper_functions.py inside of app.py the former is highlighted in red (however it does work when I run the script).
app.py:
import pandas  # works, no red highlight
import helper_functions  # works, red hightlight
Not sure what the problem is here. I realize it's not a huge deal because everything works fine; however, the red highlight is very distracting and it's hard to distinct true errors from this PyCharm glitch. I've tried this solution but no luck.
helper_functionsthat's highlighted in red as well