Skip to content

Commit

Permalink
fixes mypy
Browse files Browse the repository at this point in the history
  • Loading branch information
pcrespov committed Aug 13, 2024
1 parent 54a797a commit 12bdc73
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 deletions.
4 changes: 2 additions & 2 deletions services/catalog/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -2079,7 +2079,7 @@
"type": "string",
"format": "date-time",
"title": "Deprecated",
"description": "Owner can set the date to retire the service. Three possibilities:If None, the service is marked as `published`;If now<deprecated the service is marked as dprecated;If now>=deprecated, the service is retired"
"description": "Owner can set the date to retire the service. Three possibilities:If None, the service is marked as `published`;If now<deprecated the service is marked as deprecated;If now>=deprecated, the service is retired"
},
"classifiers": {
"items": {
Expand Down Expand Up @@ -2558,7 +2558,7 @@
"type": "string",
"format": "date-time",
"title": "Deprecated",
"description": "Owner can set the date to retire the service. Three possibilities:If None, the service is marked as `published`;If now<deprecated the service is marked as dprecated;If now>=deprecated, the service is retired"
"description": "Owner can set the date to retire the service. Three possibilities:If None, the service is marked as `published`;If now<deprecated the service is marked as deprecated;If now>=deprecated, the service is retired"
},
"classifiers": {
"items": {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,10 @@
import logging

from models_library.api_schemas_catalog.services import (
ServiceGetV2,
ServiceGroupAccessRightsV2,
ServiceUpdateV2,
)
from models_library.api_schemas_catalog.services import ServiceGetV2, ServiceUpdateV2
from models_library.emails import LowerCaseEmailStr
from models_library.products import ProductName
from models_library.rest_pagination import PageLimitInt
from models_library.services_access import ServiceGroupAccessRightsV2
from models_library.services_enums import ServiceType
from models_library.services_history import Compatibility, ServiceRelease
from models_library.services_metadata_published import ServiceMetaDataPublished
Expand Down

0 comments on commit 12bdc73

Please sign in to comment.