Skip to content

Commit

Permalink
chore: [pre-commit.ci] pre-commit autoupdate (#37)
Browse files Browse the repository at this point in the history
* updates:
- [github.com/pre-commit/pre-commit-hooks: v4.4.0 → v4.5.0](pre-commit/pre-commit-hooks@v4.4.0...v4.5.0)
- [github.com/asottile/pyupgrade: v3.13.0 → v3.15.2](asottile/pyupgrade@v3.13.0...v3.15.2)
- [github.com/pycqa/isort: 5.12.0 → 5.13.2](PyCQA/isort@5.12.0...5.13.2)
- [github.com/PyCQA/flake8: 6.1.0 → 7.0.0](PyCQA/flake8@6.1.0...7.0.0)
- [github.com/psf/black: 23.9.1 → 24.3.0](psf/black@23.9.1...24.3.0)
  • Loading branch information
pre-commit-ci[bot] authored Apr 1, 2024
1 parent 29b32e4 commit 50571eb
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
10 changes: 5 additions & 5 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ ci:

repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
rev: v4.5.0
hooks:
- id: check-added-large-files
- id: check-case-conflict
Expand All @@ -20,21 +20,21 @@ repos:
- id: trailing-whitespace

- repo: https://github.com/asottile/pyupgrade
rev: v3.13.0
rev: v3.15.2
hooks:
- id: pyupgrade

- repo: https://github.com/pycqa/isort
rev: 5.12.0
rev: 5.13.2
hooks:
- id: isort

- repo: https://github.com/PyCQA/flake8
rev: 6.1.0
rev: 7.0.0
hooks:
- id: flake8

- repo: https://github.com/psf/black
rev: 23.9.1
rev: 24.3.0
hooks:
- id: black-jupyter
8 changes: 5 additions & 3 deletions summary.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,9 +122,11 @@

# Make names links for Markdown
summary_df["repositories"] = [
f"[{repo_name}](https://github.com/{repo_name})"
if repo_name in data
else repo_name
(
f"[{repo_name}](https://github.com/{repo_name})"
if repo_name in data
else repo_name
)
for repo_name in summary_df["repositories"]
]
table_markdown = summary_df.to_markdown(
Expand Down

0 comments on commit 50571eb

Please sign in to comment.