Skip to content

Commit

Permalink
ci: Fix Ruff warning
Browse files Browse the repository at this point in the history
  • Loading branch information
pawamoy committed Jun 27, 2023
1 parent b412f29 commit d695afb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/duty/collection.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import sys
from copy import deepcopy
from importlib import util as importlib_util
from typing import Any, Callable, List, Union
from typing import Any, Callable, ClassVar, List, Union

from duty.context import Context

Expand All @@ -16,7 +16,7 @@
class Duty:
"""The main duty class."""

default_options: dict[str, Any] = {}
default_options: ClassVar[dict[str, Any]] = {}

def __init__(
self,
Expand Down

0 comments on commit d695afb

Please sign in to comment.