Skip to content

Commit

Permalink
Merge pull request #120 from davidrpugh/hotfx-model-imports
Browse files Browse the repository at this point in the history
Fixed import statements in __init__.py to include solow module.
  • Loading branch information
jstac committed Feb 12, 2015
2 parents cdef550 + 0d383e6 commit 85d5e52
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion quantecon/models/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,10 @@
"""

__all__ = ["AssetPrices", "CareerWorkerProblem", "ConsumerProblem",
"JvWorker", "LucasTree", "SearchProblem", "GrowthModel"]
"JvWorker", "LucasTree", "SearchProblem", "GrowthModel",
"solow"]

from . import solow
from .asset_pricing import AssetPrices
from .career import CareerWorkerProblem
from .ifp import ConsumerProblem
Expand Down

0 comments on commit 85d5e52

Please sign in to comment.