You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Added the ability to get the dict that represents the leveling systems level/XP requirement process
DiscordLevelingSystem.levels_and_xp()
Miscellaneous
Added __repr__ to the DiscordLevelingSystem.Bonus class
Added __all__ for the library itself (from discordLevelingSystem import *)
Added more typing.Optional for parameters. Implemented the use of typing.ClassVar and collections.abc.Sequence. A handful of parameters that specified a List[x] never really needed to be a list. All parameters that specified a List[x] has been changed to Sequence[x], but parameters that still require a list are still type hinted as List[x]