Skip to content

Commit

Permalink
Use list[...] instead of List[...]
Browse files Browse the repository at this point in the history
  • Loading branch information
bbugyi200 committed Jan 21, 2024
1 parent a59c76f commit 70b0f9d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/zorg/runners.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from functools import partial
from pathlib import Path
import tempfile
from typing import Iterable, Iterator, List
from typing import Iterable, Iterator

from clack.types import ClackRunner
import jinja2
Expand All @@ -17,7 +17,7 @@
from .config import DayConfig


RUNNERS: List[ClackRunner] = []
RUNNERS: list[ClackRunner] = []
runner = metaman.register_function_factory(RUNNERS)

logger = Logger(__name__)
Expand Down

0 comments on commit 70b0f9d

Please sign in to comment.