Skip to content
Snippets Groups Projects

#174: Remove GVASUBEndpoint

Merged Moul requested to merge 174_rm_gvasub into dev
3 files
+ 2
43
Compare changes
  • Side-by-side
  • Inline
Files
3
+ 0
11
@@ -702,16 +702,6 @@ class GVAEndpoint(Endpoint):
)
# required to type hint cls in classmethod
GVASUBEndpointType = TypeVar("GVASUBEndpointType", bound="GVASUBEndpoint")
class GVASUBEndpoint(GVAEndpoint):
API = "GVASUB"
endpoint_format = f"^GVASUB(?: (?P<flags>{const.ENDPOINT_FLAGS_REGEX}))?(?: (?P<host>{const.HOST_REGEX}))?(?: (?P<ipv4>{const.IPV4_REGEX}))?(?: (?P<ipv6>{const.IPV6_REGEX}))? (?P<port>{const.PORT_REGEX})(?: (?P<path>{const.PATH_REGEX}))?$"
re_inline = re.compile(endpoint_format)
MANAGED_API = {
BMAEndpoint.API: BMAEndpoint,
SecuredBMAEndpoint.API: SecuredBMAEndpoint,
@@ -720,7 +710,6 @@ MANAGED_API = {
ESUserEndpoint.API: ESUserEndpoint,
ESSubscribtionEndpoint.API: ESSubscribtionEndpoint,
GVAEndpoint.API: GVAEndpoint,
GVASUBEndpoint.API: GVASUBEndpoint,
} # type: Dict[str, Any]
Loading