Skip to content

Commit

Permalink
chore(deps-dev): Bump black from 23.12.1 to 24.1.1
Browse files Browse the repository at this point in the history
Bumps [black](https://github.com/psf/black) from 23.12.1 to 24.1.1.
- [Release notes](https://github.com/psf/black/releases)
- [Changelog](https://github.com/psf/black/blob/main/CHANGES.md)
- [Commits](psf/black@23.12.1...24.1.1)

---
updated-dependencies:
- dependency-name: black
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] authored and lukeshiner committed Jan 29, 2024
1 parent 3caeaab commit 3097d47
Show file tree
Hide file tree
Showing 6 changed files with 30 additions and 28 deletions.
8 changes: 4 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
repos:
- repo: https://github.com/psf/black
rev: 23.9.1
rev: 24.1.1
hooks:
- id: black
- repo: https://github.com/pycqa/flake8
rev: "6.1.0"
rev: "7.0.0"
hooks:
- id: flake8
additional_dependencies: [flake8-docstrings]
exclude: ^docs/
- repo: https://github.com/pycqa/isort
rev: 5.12.0
rev: 5.13.2
hooks:
- id: isort
name: isort
- repo: https://github.com/pre-commit/mirrors-mypy
rev: "v1.6.0"
rev: "v1.8.0"
hooks:
- id: mypy
additional_dependencies: [types-Jinja2, types-requests, openpyxl-stubs]
Expand Down
1 change: 1 addition & 0 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Sphinx config."""

import os
import sys

Expand Down
46 changes: 23 additions & 23 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions tabler/tabletypes/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ class which can be subclassed to provided open and write methods to
table = Table('path/to/open.csv', table_type=csv)
table.save('path/to/save.csv', table_type=csv)
"""

from .basetabletype import BaseTableType
from .csv import CSV, CSVURL
from .html import HTML
Expand Down
1 change: 1 addition & 0 deletions tabler/tabletypes/html.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""This module a Table Type for writing tables as HTML."""

import sys
from typing import TYPE_CHECKING, Union

Expand Down
1 change: 0 additions & 1 deletion tests/test_tabler.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
"""Tests for tabler.Table class."""


from pathlib import Path

import pytest
Expand Down

0 comments on commit 3097d47

Please sign in to comment.