Skip to content

Commit

Permalink
Merge pull request #598 from staticdev/dependabot/pip/black-24.1.1
Browse files Browse the repository at this point in the history
Bump black from 23.12.1 to 24.1.1
  • Loading branch information
staticdev authored Jan 30, 2024
2 parents ebef42b + 8173077 commit 3ef3b7c
Show file tree
Hide file tree
Showing 16 changed files with 38 additions and 23 deletions.
1 change: 1 addition & 0 deletions docs/conf.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Sphinx configuration."""

from datetime import datetime

project = "IRPF Investidor"
Expand Down
1 change: 1 addition & 0 deletions noxfile.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Nox sessions."""

import os
import shutil
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 src/irpf_investidor/__main__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Command-line interface."""

import click

import irpf_investidor.formatting
Expand Down
1 change: 1 addition & 0 deletions src/irpf_investidor/b3.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""B3 module."""

import collections
import datetime
import sys
Expand Down
1 change: 1 addition & 0 deletions src/irpf_investidor/formatting.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Formatting module."""

import locale
import math
from typing import Callable
Expand Down
1 change: 1 addition & 0 deletions src/irpf_investidor/prompt.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Prompt module."""

import prompt_toolkit.shortcuts as shortcuts

TITLE = "IRPF Investidor"
Expand Down
1 change: 1 addition & 0 deletions src/irpf_investidor/report_reader.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Report reader."""

import datetime
import glob
import math
Expand Down
1 change: 1 addition & 0 deletions src/irpf_investidor/responses.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Response objects."""

from typing import Any


Expand Down
1 change: 1 addition & 0 deletions tests/conftest.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Package-wide test fixtures."""

from _pytest.config import Config


Expand Down
1 change: 1 addition & 0 deletions tests/test_b3.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Test cases for the B3 module."""

import datetime

import pytest
Expand Down
1 change: 1 addition & 0 deletions tests/test_formatting.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Test cases for formatting module."""

import locale

from pytest_mock import MockerFixture
Expand Down
1 change: 1 addition & 0 deletions tests/test_main.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Test cases for the __main__ module."""

import click.testing
import pytest
from pytest_mock import MockerFixture
Expand Down
1 change: 1 addition & 0 deletions tests/test_prompt.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Test cases for prompt module."""

import pytest
from pytest_mock import MockerFixture

Expand Down
1 change: 1 addition & 0 deletions tests/test_report_reader.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Test cases for the report reader module."""

import datetime
import os

Expand Down
1 change: 1 addition & 0 deletions tests/test_responses.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Test cases for response objects."""

import irpf_investidor.responses as res

SUCCESS_VALUE = {"key": ["value1", "value2"]}
Expand Down

0 comments on commit 3ef3b7c

Please sign in to comment.