Skip to content

Commit

Permalink
AnaFlow: corrected typos
Browse files Browse the repository at this point in the history
  • Loading branch information
MuellerSeb committed Jan 5, 2018
1 parent e69b217 commit 9aff4fc
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
10 changes: 6 additions & 4 deletions anaflow/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,16 +41,18 @@
__version__ --- Anaflow version string
"""
from __future
from __future__ import absolute_import

from anaflow.gwsolutions import (thiem, theis,
ext_thiem2D, ext_theis2D,
ext_thiem3D, ext_theis3D,
diskmodel)
from anflow.laplace import (stehfest)
from anaflow.laplace import (stehfest)

__all__ = ["thiem", "theis",
"ext_thiem2D", "ext_theis2D",
"ext_thiem3D", "ext_theis3D",
"ext_thiem2D",
"ext_theis2D",
"ext_thiem3D",
"ext_theis3D",
"diskmodel",
"stehfest"]
8 changes: 4 additions & 4 deletions anaflow/gwsolutions.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,12 @@

import numpy as np
import scipy.sparse as sps
from scipy.special import i0, i1, k0, k1, exp1, expi
from scipy.special import (i0, i1, k0, k1, exp1, expi)

from anaflow.laplace import stehfest as sf
from anaflow.helper import well_solution, aniso, radii,\
T_CG, T_CG_error,\
K_CG, K_CG_error
from anaflow.helper import (well_solution, aniso, radii,
T_CG, T_CG_error,
K_CG, K_CG_error)

__all__ = ["thiem", "theis",
"ext_thiem2D", "ext_theis2D",
Expand Down

0 comments on commit 9aff4fc

Please sign in to comment.