Skip to content

Commit 9126650

Browse files
authored
fix typo
1 parent db89b20 commit 9126650

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Thanks for considering to contribute to this project! Some guidelines:
1212
Make sure to install an editable version before running the tests:
1313

1414
```python
15-
pip install -r requirement_dev.txt
15+
pip install -r requirements_dev.txt
1616
pip install -e .
1717
pytest --cov=mkdocs_git_revision_date_localized_plugin --cov-report term-missing tests/
1818
```

src/mkdocs_git_revision_date_localized_plugin/plugin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ class GitRevisionDateLocalizedPlugin(BasePlugin):
4343
("enable_creation_date", config_options.Type(bool, default=False)),
4444
("enabled", config_options.Type(bool, default=True)),
4545
("strict", config_options.Type(bool, default=True)),
46-
("enable_git_follow", config_options.Type(bool, default=True))
46+
("enable_git_follow", config_options.Type(bool, default=True)),
4747
("ignored_commits_file", config_options.Type(str, default=None)),
4848
)
4949

0 commit comments

Comments
 (0)