Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump black from 23.12.1 to 24.1.1 #598

Merged
merged 2 commits into from
Jan 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading