Django PayPal Import Issue

Answered

I'm trying to import a paypal signals file into apps.py, but the import statement under the ready function is greyed out.  I have researched the internet and ensured I have the correct declaration of my app in the common settings file under Installed Apps section.  I also have correct apps.py.  Would this be a configuration issue with PyCharm?  Any help would be appreciated.

0
1 comment

Greyed-out import statements usually indicate "unused import", meaning that the module/method/class that you imported is not used anywhere in your code after the import. As soon as it is used, it should stop being greyed out.

0

Please sign in to leave a comment.