Skip to content

Commit a2778ba

Browse files
yeesiancopybara-github
authored andcommitted
chore: remove immutabledict as a dependency
PiperOrigin-RevId: 621970901
1 parent c8eec21 commit a2778ba

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

vertexai/extensions/_extensions.py

+2-3
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
# See the License for the specific language governing permissions and
1414
# limitations under the License.
1515
#
16-
import immutabledict
1716
import json
1817
from typing import Optional, Sequence, Union
1918

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

3433

35-
_VERTEX_EXTENSION_HUB = immutabledict.immutabledict({
34+
_VERTEX_EXTENSION_HUB = {
3635
"code_interpreter": {
3736
"display_name": "Code Interpreter",
3837
"description": (
@@ -69,7 +68,7 @@
6968
},
7069
},
7170
},
72-
})
71+
}
7372

7473

7574
class Extension(base.VertexAiResourceNounWithFutureManager):

0 commit comments

Comments
 (0)