Skip to content

Commit 477f1d2

Browse files
davenquinngithub-actions[bot]
authored andcommitted
Format code and sort imports
1 parent 7ad0615 commit 477f1d2

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

cli/macrostrat/cli/subsystems/sgp/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
from typer import Typer
66

77
from macrostrat.cli.database import get_db
8+
89
from .match import import_sgp_data, log_matches
910
from .migrations import *
1011
from .paleogeography import compute_paleo_positions

cli/macrostrat/cli/subsystems/sgp/match/__init__.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,11 @@
33
"""
44

55
from enum import Enum
6+
from pathlib import Path
7+
68
from geoalchemy2 import Geometry, WKBElement
79
from geopandas import GeoDataFrame, sjoin
810
from pandas import DataFrame, isna, read_sql
9-
from pathlib import Path
1011
from pydantic import BaseModel
1112
from rich.live import Live
1213
from rich.table import Table
@@ -15,14 +16,15 @@
1516

1617
from macrostrat.cli.database import get_db
1718
from macrostrat.core import app
19+
20+
from ..utils import get_sgp_samples, stored_procedure, write_to_file
1821
from .clean_strat_name import (
1922
StratNameTextMatch,
2023
StratRank,
2124
clean_strat_name,
2225
clean_strat_name_text,
2326
format_name,
2427
)
25-
from ..utils import get_sgp_samples, stored_procedure, write_to_file
2628

2729
here = Path(__file__).parent
2830

0 commit comments

Comments
 (0)