Skip to content

Commit

Permalink
remove relative imports
Browse files Browse the repository at this point in the history
  • Loading branch information
kelle committed Nov 14, 2024
1 parent 7621b94 commit fa76764
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions tests/test_isochrone.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
import astropy.units as q
import numpy as np

from .. import isochrone as iso
from .. import utilities as u
from sedkit import isochrone as iso
from sedkit import utilities as u


@pytest.mark.parametrize('xval,age,xparam,yparam,expected_result,expected_result_low,expected_result_up', [
Expand Down
2 changes: 1 addition & 1 deletion tests/test_query.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import astropy.units as q
from astropy.coordinates import SkyCoord

from .. import query
from sedkit import query


def test_query_vizier():
Expand Down
2 changes: 1 addition & 1 deletion tests/test_relations.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import astropy.units as q
import numpy as np

from .. import relations as rel
from sedkit import relations as rel


class TestSpectralTypeRadius(unittest.TestCase):
Expand Down
2 changes: 1 addition & 1 deletion tests/test_uncertainties.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import astropy.units as q
import numpy as np

from .. import uncertainties as un
from sedkit import uncertainties as un


class TestUnum(unittest.TestCase):
Expand Down

0 comments on commit fa76764

Please sign in to comment.