Skip to content

Commit

Permalink
chore: remove immutabledict as a dependency
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 621970901
  • Loading branch information
yeesian authored and copybara-github committed Apr 4, 2024
1 parent c8eec21 commit a2778ba
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions vertexai/extensions/_extensions.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
import immutabledict
import json
from typing import Optional, Sequence, Union

Expand All @@ -32,7 +31,7 @@
_RuntimeConfigOrJson = Union[_utils.JsonDict, types.RuntimeConfig]


_VERTEX_EXTENSION_HUB = immutabledict.immutabledict({
_VERTEX_EXTENSION_HUB = {
"code_interpreter": {
"display_name": "Code Interpreter",
"description": (
Expand Down Expand Up @@ -69,7 +68,7 @@
},
},
},
})
}


class Extension(base.VertexAiResourceNounWithFutureManager):
Expand Down

0 comments on commit a2778ba

Please sign in to comment.