Skip to content

Commit

Permalink
Format with Black v24
Browse files Browse the repository at this point in the history
  • Loading branch information
pkalita-lbl committed Feb 8, 2024
1 parent 0f505ec commit 9e5f16c
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/prefixmaps/ingest/etl_runner.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""ETL logic for retrieving and normalizing upstream contexts."""

from pathlib import Path
from typing import Callable, Dict, Mapping, Union

Expand Down
1 change: 1 addition & 0 deletions src/prefixmaps/ingest/ingest_bioportal.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Simple ETL from bioportal to prefixmaps."""

from typing import Any, Dict, TextIO, Union

from prefixmaps.data import data_path
Expand Down
1 change: 1 addition & 0 deletions src/prefixmaps/ingest/ingest_go.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Ingests the GO prefix registry."""

from typing import TextIO, Union

import requests
Expand Down
1 change: 1 addition & 0 deletions src/prefixmaps/ingest/ingest_jsonld.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Generic JSON-LD ingests."""

import json
from typing import Any, Dict, List, Optional, TextIO, Union

Expand Down
1 change: 1 addition & 0 deletions src/prefixmaps/ingest/ingest_shacl.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Ingests from triples using the SHACL PrefixDeclarations data model."""

from typing import Any, TextIO, Union

import rdflib
Expand Down
1 change: 1 addition & 0 deletions tests/test_core/test_prefixmaps.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""Tests core expansion logic and data.
This serves as "checksums" on the underlying ingested data.
"""

import unittest

import prefixmaps
Expand Down

0 comments on commit 9e5f16c

Please sign in to comment.