mirror of
https://gitlab.com/datalifeit/python-retrofix
synced 2023-12-14 06:13:03 +01:00
Use relative imports for python3 compatibility
This commit is contained in:
parent
211f7295f9
commit
b4315151bd
2 changed files with 2 additions and 2 deletions
|
@ -17,7 +17,7 @@
|
|||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
#
|
||||
##############################################################################
|
||||
from record import Record
|
||||
from .record import Record
|
||||
from .fields import Char, Const, Integer, Number, Numeric
|
||||
from .fields import SIGN_N
|
||||
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
#
|
||||
##############################################################################
|
||||
|
||||
from record import Record
|
||||
from .record import Record
|
||||
from .fields import *
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue