Skip to content

Commit

Permalink
black==24.3.0 (#277)
Browse files Browse the repository at this point in the history
  • Loading branch information
ggravlingen authored Mar 29, 2024
1 parent 4c2b7fb commit 11e94ff
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 1 deletion.
1 change: 1 addition & 0 deletions pygleif/api/data.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Data."""

from datetime import datetime
from typing import Any

Expand Down
1 change: 1 addition & 0 deletions pygleif/api/meta.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Meta data."""

from datetime import datetime

from pydantic.v1 import BaseModel, Field
Expand Down
1 change: 1 addition & 0 deletions pygleif/const.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Constants."""

URL_API = "https://api.gleif.org/api/v1/lei-records/"
URL_SEARCH = "https://api.gleif.org/api/v1/lei-records?filter%5Bfulltext%5D="

Expand Down
1 change: 1 addition & 0 deletions pygleif/gleif.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""GLEIF API."""

from .api import GLEIFResponse
from .const import URL_API
from .utils import load_json
Expand Down
1 change: 1 addition & 0 deletions pygleif/search.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Search."""

from __future__ import annotations

from pygleif.api import SearchResponse
Expand Down
1 change: 1 addition & 0 deletions pygleif/utils.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Utility functions."""

from __future__ import annotations

import json
Expand Down
2 changes: 1 addition & 1 deletion requirements_test.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
black==23.12.1
black==24.3.0
coverage==7.4.3
mypy==1.8.0
pre-commit==3.6.2
Expand Down
1 change: 1 addition & 0 deletions tests/test_gleif.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Tests."""

import pytest

from pygleif import PyGleif
Expand Down

0 comments on commit 11e94ff

Please sign in to comment.