Skip to content

Commit

Permalink
Fix typo in config docs for --extend-exclude (psf#3170)
Browse files Browse the repository at this point in the history
The old regex in the example was invalid and caused an error on startup.
  • Loading branch information
onescriptkid authored and cibinmathew committed Aug 13, 2022
1 parent 959ea36 commit 228e3bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/usage_and_configuration/the_basics.md
Expand Up @@ -265,7 +265,7 @@ extend-exclude = '''
# in the root of the project.
(
^/foo.py # exclude a file named foo.py in the root of the project
| *_pb2.py # exclude autogenerated Protocol Buffer files anywhere in the project
| .*_pb2.py # exclude autogenerated Protocol Buffer files anywhere in the project
)
'''
```
Expand Down

0 comments on commit 228e3bb

Please sign in to comment.