Skip to content

Commit

Permalink
Fix module names
Browse files Browse the repository at this point in the history
  • Loading branch information
lycantropos committed Nov 1, 2024
1 parent a8f318f commit 3091e12
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion rithm/_enums.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@


class _BaseEnum(_IntEnum):
__module__ = 'rhythm.enums'
__module__ = 'rithm.enums'

def __repr__(self) -> str:
return f'{type(self).__qualname__}.{self.name}'
Expand Down
4 changes: 2 additions & 2 deletions rithm/_rithm.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def from_bytes(cls, value: bytes, endianness: _Endianness, /) -> Self:

_value: int

__module__ = 'rhythm.integer'
__module__ = 'rithm.integer'
__slots__ = ('_value',)

def __init_subclass__(cls, /, **_kwargs: Any) -> NoReturn:
Expand Down Expand Up @@ -463,7 +463,7 @@ def round(self, tie_breaking: _TieBreaking, /) -> Int:
_denominator: Int
_numerator: Int

__module__ = 'rhythm.fraction'
__module__ = 'rithm.fraction'
__slots__ = '_denominator', '_numerator'

def __init_subclass__(cls, /, **_kwargs: Any) -> NoReturn:
Expand Down

0 comments on commit 3091e12

Please sign in to comment.