Skip to content

Commit

Permalink
Fix typing annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
spolcyn committed Jun 20, 2024
1 parent dee72ad commit c5d826c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sec_edgar_downloader/_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from dataclasses import dataclass
from datetime import date, datetime
from pathlib import Path
from typing import Optional, Union
from typing import Optional, Set, Union

from ._constants import DEFAULT_AFTER_DATE, DEFAULT_BEFORE_DATE

Expand All @@ -20,7 +20,7 @@ class DownloadMetadata:
include_amends: bool = False
download_details: bool = False
ticker: Optional[str] = None
accession_numbers_to_skip: Optional[set[str]] = None
accession_numbers_to_skip: Optional[Set[str]] = None


@dataclass
Expand Down

0 comments on commit c5d826c

Please sign in to comment.