Skip to content

Commit

Permalink
fix: give Flag a member
Browse files Browse the repository at this point in the history
  • Loading branch information
JPHutchins committed Nov 24, 2023
1 parent bc2d191 commit 662ff63
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions smp/header.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import struct
from dataclasses import dataclass
from enum import IntEnum, IntFlag, unique
from enum import IntEnum, IntFlag, auto, unique
from typing import TypeVar


Expand Down Expand Up @@ -74,7 +74,7 @@ class _VERSION_BIT:

@unique
class Flag(IntFlag):
pass
UNUSED = auto()


@dataclass(frozen=True)
Expand Down

0 comments on commit 662ff63

Please sign in to comment.