From 0906802110ead2acaf3838f0ea0eeecd233551c5 Mon Sep 17 00:00:00 2001 From: = Date: Mon, 4 Nov 2024 10:53:06 +0100 Subject: [PATCH] Change config --- src/deploy_prefect/models.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/deploy_prefect/models.py b/src/deploy_prefect/models.py index 3bb2d13..1c77f46 100644 --- a/src/deploy_prefect/models.py +++ b/src/deploy_prefect/models.py @@ -36,7 +36,6 @@ class CHAIN(Enum): """ ARBITRUM = "ARBITRUM" - BASE = "BASE" GNOSIS = "GNOSIS" MAINNET = "MAINNET" @@ -44,10 +43,6 @@ def is_arbitrum(self) -> bool: """Check if the chain is Arbitrum""" return self == CHAIN.ARBITRUM - def is_base(self) -> bool: - """Check if the chain is Base""" - return self == CHAIN.BASE - def is_gnosis(self) -> bool: """Check if the chain is Gnosis""" return self == CHAIN.GNOSIS