Skip to content

fix: add missing comma in flake8 exclude config (issue #14) - #16

Open
Jah-yee wants to merge 1 commit into
ucfopen:mainfrom
Jah-yee:fix/missing-comma-setup-cfg
Open

Jah-yee wants to merge 1 commit into
ucfopen:mainfrom
Jah-yee:fix/missing-comma-setup-cfg

Conversation

@Jah-yee

@Jah-yee Jah-yee commented Sep 17, 2026

Copy link
Copy Markdown

Summary

In flask/{{cookiecutter.project_slug}}/setup.cfg line 3, the flake8 exclude directive was missing a comma after migrations:

Before: exclude = env, migrations wsgi.py, src
After: exclude = env, migrations, wsgi.py, src

Fix

Added the missing comma so that wsgi.py is correctly included in the excluded paths alongside env and migrations.

Testing

Verified locally that the fix produces the expected flake8 exclude configuration.

Fixes #14

In flask/{{cookiecutter.project_slug}}/setup.cfg line 3, add missing
comma after 'migrations' in the exclude directive to correctly
separate entries: 'migrations, wsgi.py' instead of 'migrations wsgi.py'.

Fixes issue ucfopen#14.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

missing comma

1 participant