Skip to content

Commit

Permalink
fix type test for Python 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
mdekstrand committed Dec 13, 2024
1 parent c391f71 commit 91864b4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lenskit/tests/pipeline/test_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
from pathlib import Path
from types import NoneType
from typing import Any, TypeVar
from uuid import UUID

import numpy as np
import pandas as pd
Expand Down Expand Up @@ -135,7 +136,7 @@ def test_type_string_generic():


def test_type_string_class():
assert type_string(Path) == "pathlib.Path"
assert type_string(UUID) == "uuid.UUID"


def test_parse_string_None():
Expand Down

0 comments on commit 91864b4

Please sign in to comment.