Skip to content

Commit

Permalink
Remove unused typing
Browse files Browse the repository at this point in the history
  • Loading branch information
heisner-tillman committed Apr 4, 2024
1 parent e132934 commit 77b2e09
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions lib/galaxy/webapps/galaxy/api/tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
UploadFile,
)
from starlette.datastructures import UploadFile as StarletteUploadFile
from typing_extensions import Annotated

from galaxy import (
exceptions,
Expand Down Expand Up @@ -62,15 +61,6 @@
# Tool search bypasses the fulltext for the following list of terms
SEARCH_RESERVED_TERMS_FAVORITES = ["#favs", "#favorites", "#favourites"]

CreateToolBody = Annotated[
ExecuteToolPayload,
Body(
default=...,
title="",
description="",
),
]


class FormDataApiRoute(APIContentTypeRoute):
match_content_type = "multipart/form-data"
Expand All @@ -84,8 +74,6 @@ class JsonApiRoute(APIContentTypeRoute):

FetchDataForm = as_form(FetchDataFormPayload)

CreateDataForm = as_form(ExecuteToolPayload)


@router.cbv
class FetchTools:
Expand Down

0 comments on commit 77b2e09

Please sign in to comment.