Skip to content

Commit

Permalink
Relative internal imports
Browse files Browse the repository at this point in the history
  • Loading branch information
martin-brajer committed Aug 3, 2021
1 parent 6dcf65f commit 9ed8296
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
12 changes: 6 additions & 6 deletions physicslab/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@
__author__ = 'Martin Brajer'


from physicslab import experiment
from . import experiment

from physicslab import curves
from physicslab import electricity
from physicslab import utility
from physicslab import io
from physicslab import ui
from . import curves
from . import electricity
from . import utility
from . import io
from . import ui
12 changes: 6 additions & 6 deletions physicslab/experiment/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@

import pandas as pd

from physicslab.experiment import curie_temperature
from physicslab.experiment import hall
from physicslab.experiment import magnetism_type
from physicslab.experiment import profilometer
from physicslab.experiment import sem
from physicslab.experiment import van_der_pauw
from . import curie_temperature
from . import hall
from . import magnetism_type
from . import profilometer
from . import sem
from . import van_der_pauw


#: :attr:`pandas.Dataframe.attrs` tag.
Expand Down

0 comments on commit 9ed8296

Please sign in to comment.