Skip to content

Commit

Permalink
fix(python) Set -> set
Browse files Browse the repository at this point in the history
  • Loading branch information
stanislav-tkach committed Dec 12, 2024
1 parent 165def8 commit 24e9d48
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions utilities/earthly-cache-watcher/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import threading
import time
from collections.abc import Callable
from typing import Set
from typing import set

from dotenv import dotenv_values
from loguru import logger
Expand Down Expand Up @@ -64,8 +64,8 @@ def __init__(self, interval: int):
self.layer_growth_index: dict[str, int] = {}
self.layer_index: dict[str, int] = {}
self.file_index: dict[str, int] = {}
self.triggered_layers: Set[str] = set()
self.triggered_growth_layers: Set[str] = set()
self.triggered_layers: set[str] = set()
self.triggered_growth_layers: set[str] = set()
self.interval = Interval(interval, self.handle_interval_change)

self.list_initial_sizes()
Expand Down

0 comments on commit 24e9d48

Please sign in to comment.