Skip to content

Commit

Permalink
Fix linter
Browse files Browse the repository at this point in the history
  • Loading branch information
theoctober19th committed Jan 20, 2025
1 parent fb53d21 commit 2a84462
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion interfaces/azure_storage/v0/schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
"""
from enum import Enum
from pathlib import Path
from typing import List

from interface_tester.schema_base import DataBagSchema
from pydantic import (
Expand Down Expand Up @@ -67,7 +68,7 @@ class AzureStorageRequirerAppData(BaseModel):
title="container",
)

requested_secrets: list[str] = Field(
requested_secrets: List[str] = Field(
alias="requested-secrets",
description="Any provider field which should be transfered as Juju Secret",
examples=[["username", "password", "tls-ca", "uris"]],
Expand Down

0 comments on commit 2a84462

Please sign in to comment.