Allan Galarza

Results 13 issues of Allan Galarza

I have a series of Mock classes for my testing module, based on this: https://github.com/python-discord/bot/blob/master/tests/helpers.py But I'm using asynctest because I'm using Python 3.6 Base classes: ```py class CustomMockMixin: discord_id...

This change makes the visualizer change the username and avatar of the bot when using webhook mode. ![image](https://user-images.githubusercontent.com/12865379/56776179-9c29bf80-677f-11e9-915b-d8ac70838a93.png)

A command to mute the level up and deaths announcements of a character or user. This would let you stop getting announcement messages of unwanted characters.

feature

A command that parses the world event messages, and the bot interprets the meaning, showing the current status of world changes and other events. These messages: ``` 08:34 A fiery...

feature
onhold

This adds overloads to all translate functions to also accept a mapping of argument names to argument values: **Example**: ```properties command.apple.response=Hello my name is **{name}** and I have **{appleCount, number}**...

This is something I had also reported to [FastAPI](https://github.com/tiangolo/fastapi/discussions/9856) and it has been fixed. The issue is that pydantic now has [two serialization modes](https://docs.pydantic.dev/latest/api/json_schema/#pydantic.json_schema.JsonSchemaMode): `input` and `serialization`. Since a computed...

enhancement

Given the following classes: ```py T = TypeVar('T') class Paginated(GenericModel, Generic[T]): current_page: int = 1 """The currently viewed page.""" total_pages: int = 1 """The total number of pages.""" results_count: int...

bug
help wanted

(See #269) This is a simple attempt at implementing specialized REST request exceptions. I initially considered making `KtorRequestException` a sealed class and making subclasses for the errors, but this would...

This does not seem to be working anymore, at least not on `mkdocs`, I don't have another way to test. ``` ERROR - Config value: 'markdown_extensions'. Error: Failed loading extension...

help wanted

Command line arguments either to ignore certain categories or to only select specific ones.

enhancement