Skip to content

Commit

Permalink
Fix import sorting
Browse files Browse the repository at this point in the history
  • Loading branch information
albireox committed Sep 28, 2023
1 parent a0cdb5f commit ed8a260
Showing 1 changed file with 8 additions and 14 deletions.
22 changes: 8 additions & 14 deletions python/target_selection/xmatch.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,26 +20,20 @@
import yaml
from networkx.algorithms import shortest_path
from peewee import SQL, Case, Model, fn

from sdssdb.connection import PeeweeDatabaseConnection
from sdssdb.utils.internals import get_row_count
from sdsstools import merge_config
from sdsstools._vendor.color_print import color_text

import target_selection
from target_selection.exceptions import (
TargetSelectionNotImplemented,
TargetSelectionUserWarning,
XMatchError,
)
from target_selection.utils import (
Timer,
get_configuration_values,
get_epoch,
is_view,
sql_apply_pm,
vacuum_outputs,
vacuum_table,
)
from target_selection.exceptions import (TargetSelectionNotImplemented,
TargetSelectionUserWarning,
XMatchError)
from target_selection.utils import (Timer, get_configuration_values,
get_epoch, is_view, sql_apply_pm,
vacuum_outputs, vacuum_table)


EPOCH = 2016.0
QUERY_RADIUS = 1.
Expand Down

0 comments on commit ed8a260

Please sign in to comment.