Skip to content

Commit

Permalink
Add rat boss (#63)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonxslays committed Jan 27, 2024
1 parent c3dcec6 commit 0f3b584
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "wom.py"
version = "0.9.2"
version = "0.9.3"
description = "An asynchronous wrapper for the Wise Old Man API."
authors = ["Jonxslays"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion wom/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
from typing import Final

__packagename__: Final[str] = "wom.py"
__version__: Final[str] = "0.9.2"
__version__: Final[str] = "0.9.3"
__author__: Final[str] = "Jonxslays"
__copyright__: Final[str] = "2023-present Jonxslays"
__description__: Final[str] = "An asynchronous wrapper for the Wise Old Man API."
Expand Down
4 changes: 3 additions & 1 deletion wom/enums.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,8 @@ def at_random(cls: t.Type[T]) -> T:
"""Generates a random variant of this enum.
Returns:
The randomly generated enum."""
The randomly generated enum.
"""
return random.choice(tuple(cls))


Expand Down Expand Up @@ -231,6 +232,7 @@ class Bosses(Metric):
PhantomMuspah = "phantom_muspah"
Sarachnis = "sarachnis"
Scorpia = "scorpia"
Scurrius = "scurrius"
Skotizo = "skotizo"
Spindel = "spindel"
Tempoross = "tempoross"
Expand Down

0 comments on commit 0f3b584

Please sign in to comment.