Mohammad Ibrahim

Results 11 issues of Mohammad Ibrahim

## Enhancement request: ### What should be added? In [UIInputText](https://api.arcade.academy/en/latest/api/gui_widgets.html?#arcade-gui-uiinputtext) there should be an argument to 1. only accept numeric values i.e (0, 1, 2, 3, 4, 5, 6, 7,...

enhancement
gui

## Documentation request: ### What documentation needs to change? The example for [flat text buttons](https://api.arcade.academy/en/latest/examples/gui_flat_button.html?highlight=UIFlatButton). ### Where is it located? https://github.com/pythonarcade/arcade/blob/development/arcade/examples/gui_flat_button.py ### What is wrong with it? How can it...

documentation
gui

In the site's [code jam page](https://www.pythondiscord.com/events/code-jams/9/), the two dates shown below should be crossed as their time period is over but they are not. If possible I would like to...

Currently [this](https://github.com/twitter/the-algorithm/blob/main/src/python/twitter/deepbird/projects/timelines/scripts/models/earlybird/lolly/parsers.py#L127) method returns just a regex which doesn't uses any class attribute. According to pythonic code this should be a `staticmethod`.

## Description `on_message` function: https://github.com/python-discord/sir-lancebot/blob/9ecf423268bb3a89e881e4b28e5ee56fe9b33819/bot/exts/utilities/githubinfo.py#L175 https://github.com/python-discord/sir-lancebot/blob/9ecf423268bb3a89e881e4b28e5ee56fe9b33819/bot/exts/utilities/githubinfo.py#L183 Here the `on_message` function returns more than just issues, it also returns pull requests. So the docstring and the variable names should be changed...

type: bug

Closes #2022 Previously the error prompted because isinstance was returning False when an TagIdentifier object was compared to itself. Instead of checking that, we check if the source object issubclass...

a: backend
p: 2 - normal
a: utility
t: enhancement
up for grabs

According to these [lines](https://github.com/python-discord/bot/blob/main/bot/exts/info/tags.py#L150-#L151) ```python # Files directly under `base_path` have an empty string as the parent directory name tag_group = parent_dir.name or None ``` `tag_group` will be None until...

s: planning
p: 2 - normal
a: tags
t: enhancement

Currently when executing `!help tag` it returns query not found. ![2023-03-24_17-07](https://user-images.githubusercontent.com/74553450/227511411-e217074c-2c64-42db-9964-7799b4094cf9.png) It should return something similar to what it returns for prefix based commands. ![2023-03-24_17-08](https://user-images.githubusercontent.com/74553450/227511638-fad71c17-6860-4cf5-ab2e-8aaf6fa52cba.png)

When I am trying to print discord.Interaction object it throws this error ```python Ignoring exception in command test_command: Traceback (most recent call last): File "/home/ibrahim/.local/lib/python3.8/site-packages/discord/ext/commands/core.py", line 85, in wrapped ret...

bug
fixed in developer-branch

>duckduckgo.query('calculator').answer.type 'calc' > duckduckgo.query('calculator 2+2').answer.text ''" >duckduckgo.query("2+2").answer.text "" How to fix this