Skip to content

Commit

Permalink
Merge pull request #1 from ijiraq/master
Browse files Browse the repository at this point in the history
made import absolute instead of relative so they work.
  • Loading branch information
austinbeauch authored Jun 14, 2017
2 parents 5851484 + 62abdf1 commit 3f69474
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion sip_tpv/pv_to_sip.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@

from copy import copy
import astropy.io.fits as fits
from .pvsiputils import(get_pv_keywords,
from pvsiputils import(get_pv_keywords,
sym_sipexprs,
real_tpvexprs,
add_sip_keywords,
Expand Down
2 changes: 1 addition & 1 deletion sip_tpv/pvsiputils.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@

from sympy import symbols, Matrix, poly
import numpy as np
from .reverse import *
from reverse import *


def sym_tpvexprs():
Expand Down
2 changes: 1 addition & 1 deletion sip_tpv/sip_to_pv.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@

from copy import copy
import astropy.io.fits as fits
from sip_tpv.pvsiputils import (sym_tpvexprs,
from pvsiputils import (sym_tpvexprs,
get_sip_keywords,
real_sipexprs,
add_pv_keywords,
Expand Down

0 comments on commit 3f69474

Please sign in to comment.