Skip to content

Commit

Permalink
fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
clallemand committed Sep 8, 2023
1 parent 48ab4e9 commit a40a8db
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import os

from ..model.base import *
from openfisca_france.model.base import *


dir_path = os.path.join(os.path.dirname(__file__), 'parameters')
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from openfisca_france.model.base import *

from .. import entities
from openfisca_france import entities


dir_path = os.path.join(os.path.dirname(__file__), 'parameters')
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
except ImportError:
fsolve = None

from .. import entities
from ..model.base import *
from openfisca_france import entities
from openfisca_france.model.base import *


def calculate_net_from(salaire_de_base, individu, period):
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import os

from ..model.base import *
from openfisca_france.model.base import *


dir_path = os.path.join(os.path.dirname(__file__), 'parameters')
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import os

from ..model.base import *
from openfisca_france.model.base import *


dir_path = os.path.dirname(__file__)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import os

from ..model.base import *
from openfisca_france.model.base import *


dir_path = os.path.join(os.path.dirname(__file__), 'parameters')
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import os

from ..model.base import *
from openfisca_france.model.base import *


dir_path = os.path.join(os.path.dirname(__file__), 'parameters')
Expand Down

0 comments on commit a40a8db

Please sign in to comment.