Django GAE Integration Error with Shopify Setup

I’m trying to integrate my Django application with Google App Engine for a Shopify project but running into issues. After configuring my API credentials and updating the app.yaml file with my GAE application name, I get this error when running the manage.py script:

Traceback (most recent call last):
  File "run.py", line 15, in <module>
    import config
  File "/home/user/myproject/ecommerce/config.py", line 12, in <module>
    from gaedjango.base_settings import *
  File "/home/user/myproject/ecommerce/gaedjango/base_settings.py", line 9, in <module>
    initialize_environment()
  File "/home/user/myproject/ecommerce/gaedjango/startup.py", line 78, in initialize_environment
    configure_project()
  File "/home/user/myproject/ecommerce/gaedjango/startup.py", line 125, in configure_project
    from .helpers import check_appserver, is_production
  File "/home/user/myproject/ecommerce/gaedjango/helpers.py", line 18, in <module>
    app_configuration, extra = development_server.ParseAppConfig(APP_ROOT, {})
ValueError: too many values to unpack

The only changes I made were adding my Shopify API credentials and modifying the application identifier in the YAML configuration file. Has anyone encountered this unpacking error before?