diff options
| author | 2021-07-31 18:42:36 -0400 | |
|---|---|---|
| committer | 2021-12-02 11:26:23 +0000 | |
| commit | ba10b9b6525beac6637e5a13ead03fb018751201 (patch) | |
| tree | 0c29163c472e6952b1e6cf6d68d3934095359af5 /bot/exts/utilities/githubinfo.py | |
| parent | chore: Merge the .issue command into the github cog (diff) | |
chore: Remove the .issue command
Diffstat (limited to '')
| -rw-r--r-- | bot/exts/utilities/githubinfo.py | 37 | 
1 files changed, 0 insertions, 37 deletions
| diff --git a/bot/exts/utilities/githubinfo.py b/bot/exts/utilities/githubinfo.py index f0820731..b0b327b6 100644 --- a/bot/exts/utilities/githubinfo.py +++ b/bot/exts/utilities/githubinfo.py @@ -18,11 +18,8 @@ from bot.constants import (      Emojis,      NEGATIVE_REPLIES,      Tokens, -    WHITELISTED_CHANNELS  )  from bot.exts.core.extensions import invoke_help_command -from bot.utils.decorators import whitelist_override -  log = logging.getLogger(__name__)  GITHUB_API_URL = "https://api.github.com" @@ -195,40 +192,6 @@ class GithubInfo(commands.Cog):          if ctx.invoked_subcommand is None:              await invoke_help_command(ctx) -    @whitelist_override(channels=WHITELISTED_CHANNELS, categories=WHITELISTED_CATEGORIES) -    @github_group.command(aliases=("pr", "issues", "prs"), root_aliases=("issue", "pr")) -    async def issue( -        self, -        ctx: commands.Context, -        numbers: commands.Greedy[int], -        repository: str = "sir-lancebot", -        user: str = "python-discord" -    ) -> None: -        """Command to retrieve issue(s) from a GitHub repository.""" -        # Remove duplicates -        numbers = set(numbers) - -        err_message = None -        if not numbers: -            err_message = "You must have at least one issue/PR!" - -        elif len(numbers) > MAXIMUM_ISSUES: -            err_message = f"Too many issues/PRs! (maximum of {MAXIMUM_ISSUES})" - -        # If there's an error with command invocation then send an error embed -        if err_message is not None: -            err_embed = discord.Embed( -                title=random.choice(ERROR_REPLIES), -                color=Colours.soft_red, -                description=err_message -            ) -            await ctx.send(embed=err_embed) -            await invoke_help_command(ctx) -            return - -        results = [await self.fetch_issues(number, repository, user) for number in numbers] -        await ctx.send(embed=self.format_embed(results, user, repository)) -      @commands.Cog.listener()      async def on_message(self, message: discord.Message) -> None:          """ | 
