Skip to content

Commit

Permalink
Fix typing
Browse files Browse the repository at this point in the history
  • Loading branch information
nwiltsie committed Sep 23, 2024
1 parent 3eac36e commit 0403b04
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
import datetime

from collections import namedtuple
from typing import List
from pathlib import Path

import pytest
Expand All @@ -15,7 +14,7 @@
)

# Named stash keys for storing the ChangelogUpdate objects between hook calls
changelog_updates_key = pytest.StashKey[List[ChangelogUpdate]]()
changelog_updates_key = pytest.StashKey[list[ChangelogUpdate]]()


def pytest_configure(config: pytest.Config) -> None:
Expand Down

0 comments on commit 0403b04

Please sign in to comment.