aboutsummaryrefslogtreecommitdiffstats
path: root/bot/exts/core (follow)
Commit message (Collapse)AuthorAgeLines
* Add python help channel to src command whitelistHEADmainGravatar Joe Banks3 days-1/+3
|
* Use enum.member instead of functools.partial workaroundGravatar wookie1842025-04-08-6/+4
| | | | The workaround would no longer work in future versions
* Update internal eval & latex to use the new paste service API (#1558)Gravatar ChrisJL2024-07-04-9/+9
|
* Cleanup constants (#1484)Gravatar Amrou Bellalouna2024-05-21-2/+2
|
* Use paginator from botcore (#1444)Gravatar Amrou Bellalouna2024-03-11-10/+7
|
* Always use the get_logger func from bot-coreGravatar Chris Lovering2023-11-25-13/+14
|
* Lint repo with new ruff rulesGravatar Chris Lovering2023-11-13-1/+1
|
* Corrected attribute name to fetch github url in extensions.py (#1348)Gravatar Parth Verma2023-08-21-1/+1
|
* Bump ruff from 0.0.272 to 0.0.280 (#1333)Gravatar dependabot[bot]2023-08-10-1/+1
| | | | | | | Co-authored-by: wookie184 <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Chris Lovering <[email protected]> Co-authored-by: ChrisJL <[email protected]>
* Bump ruff from 0.0.265 to 0.0.267 (#1276)Gravatar dependabot[bot]2023-05-15-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | * Bump ruff from 0.0.265 to 0.0.267 Bumps [ruff](https://github.com/charliermarsh/ruff) from 0.0.265 to 0.0.267. - [Release notes](https://github.com/charliermarsh/ruff/releases) - [Changelog](https://github.com/charliermarsh/ruff/blob/main/BREAKING_CHANGES.md) - [Commits](https://github.com/charliermarsh/ruff/compare/v0.0.265...v0.0.267) --- updated-dependencies: - dependency-name: ruff dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> * Fix linting errors from new ruff rules --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Chris Lovering <[email protected]>
* Move unshared contants inside modulesGravatar Chris Lovering2023-05-09-7/+11
|
* Apply fixes for ruff lintingGravatar Chris Lovering2023-05-09-36/+30
| | | | | Co-authored-by: wookie184 <[email protected]> Co-authored-by: Amrou Bellalouna <[email protected]>
* Simplify command params returnGravatar miki555551152023-05-08-3/+1
|
* Fix extra space in .help command signatureGravatar miki555551152023-05-07-2/+3
|
* Bump botcore version (#1180)Gravatar Amrou Bellalouna2022-12-28-1/+1
| | | Co-authored-by: Amrou Bellalouna <[email protected]>
* Ignore ellipses when suggesting commandsGravatar Cam Caswell2022-12-14-1/+3
|
* updated bot/exts/core/help.py for Issue #1122Gravatar divyanshu2022-10-29-1/+1
|
* Async load and unload exts in the extensions cogGravatar Chris Lovering2022-09-21-9/+9
|
* Support discord.py's new async cog loadingGravatar Chris Lovering2022-09-21-12/+12
|
* Use extension utils from bot-coreGravatar Chris Lovering2022-09-21-13/+12
|
* Remove call to on_command_error that shouldn't be there.Gravatar Izan2022-09-06-2/+1
|
* Allow help in DMsGravatar Chris Lovering2022-08-19-0/+2
| | | | Since there are some comands that work in DMs, we should allow the command to be ran there.
* Don't output command name twice in help commandGravatar Chris Lovering2022-08-19-1/+0
|
* Update help command to work with root_aliasesGravatar Chris Lovering2022-08-19-1/+3
| | | | | | Specifying root_aliases causes bookmark delete to be registered as a command rather than subcommand, which causes it to be listed even though subcommands usually aren't, and this isn't done correctly. Co-authored-by: wookie184 <[email protected]>
* Help command fix, normalize suggestions for unknown commands (#1064)Gravatar Rohan Reddy Alleti2022-08-18-33/+50
| | | Co-authored-by: Xithrius <[email protected]>
* Help: remove redundant space in subcommand aliasesGravatar Richard Si2022-06-25-1/+1
| | | `parent` already has a trailing space so let's not add *another* one.
* truncate output. (#1041)Gravatar MaskDuck2022-03-04-1/+4
|
* Fix TypeError caused by adding a list to a tupleGravatar Izan2022-02-20-1/+1
|
* Allow `.src` in dev-contrib and community-meta (#1033)Gravatar TizzySaurus2022-02-20-2/+5
|
* feat: implement moving commandsGravatar onerandomusername2021-12-03-1/+9
| | | | add exceptions and handler for commands that move locations
* Merge branch 'main' into update-role-constantsGravatar TizzySaurus2021-11-29-5/+3
|\
| * Migrate to `og_blurple` (#924)Gravatar TizzySaurus2021-10-26-1/+1
| |
| * Isort: give the codebase a sortGravatar Matteo Bertucci2021-10-22-4/+2
| |
* | Rename `Roles.admin` to `Roles.admins`Gravatar Izan2021-10-11-3/+3
|/
* properly blacklist the extensions cogGravatar aru2021-09-21-1/+1
| | | since the restructure of lancebot, this code was incorrect, and is no longer blacklisting itself.
* Move internal eval and rename utils to coreGravatar Janine vN2021-09-05-0/+1577
Part of this restructure involves splitting out the massive evergreen folder into a `fun` folder and then a `utilities` folder. To help with that we've rename the `util` folder to `core`. The core functions to run the bot have been moved into this folder. `.source`, `.ping`, and `.int e` have been moved into this folder.