Skip to content

Commit

Permalink
Attempt 2
Browse files Browse the repository at this point in the history
  • Loading branch information
nineteendo committed Sep 25, 2024
1 parent 549fae0 commit f314054
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/jsonyx/test/test_dumps.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

from collections import UserDict, UserList
from decimal import Decimal
from enum import IntEnum, ReprEnum
from enum import Enum
from typing import TYPE_CHECKING

import pytest
Expand All @@ -25,11 +25,11 @@
_CIRCULAR_LIST.append(_CIRCULAR_LIST)


class _FloatEnum(float, ReprEnum):
class _FloatEnum(float, Enum):
ZERO = 0.0


class _IntEnum(IntEnum):
class _IntEnum(int, Enum):
ZERO = 0


Expand Down

0 comments on commit f314054

Please sign in to comment.