From ebadb019c9f9a44ee8dcf1f389826641f11119c4 Mon Sep 17 00:00:00 2001 From: Joshua Larsen Date: Tue, 23 Jul 2024 11:45:18 -0700 Subject: [PATCH] Update apiexchange.py Add gwe-gwe exchange information to ApiExchange --- modflowapi/extensions/apiexchange.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modflowapi/extensions/apiexchange.py b/modflowapi/extensions/apiexchange.py index c3dae5f..8293ecb 100644 --- a/modflowapi/extensions/apiexchange.py +++ b/modflowapi/extensions/apiexchange.py @@ -16,5 +16,5 @@ class ApiExchange(ApiMbase): """ def __init__(self, mf6, name): - pkg_types = {"gwf-gwf": ListPackage, "gwt-gwt": ListPackage} + pkg_types = {"gwf-gwf": ListPackage, "gwt-gwt": ListPackage, "gwe-gwe": ListPackage} super().__init__(mf6, name, pkg_types)