Update typing 10 (#48071)
This commit is contained in:
parent
00dca88024
commit
25a13d1554
73 changed files with 412 additions and 333 deletions
|
@ -1,9 +1,10 @@
|
|||
"""Minio component."""
|
||||
from __future__ import annotations
|
||||
|
||||
import logging
|
||||
import os
|
||||
from queue import Queue
|
||||
import threading
|
||||
from typing import List
|
||||
|
||||
import voluptuous as vol
|
||||
|
||||
|
@ -230,7 +231,7 @@ class MinioListener:
|
|||
bucket_name: str,
|
||||
prefix: str,
|
||||
suffix: str,
|
||||
events: List[str],
|
||||
events: list[str],
|
||||
):
|
||||
"""Create Listener."""
|
||||
self._queue = queue
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue