File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 2828from ghutils .ui .components .visibility import MessageVisibility , respond_with_visibility
2929from ghutils .ui .embeds .commits import create_commit_embed
3030from ghutils .ui .embeds .issues import create_issue_embed
31- from ghutils .ui .views .select_artifact import SelectArtifactView
31+ from ghutils .ui .views .get_artifact import GetArtifactView
3232from ghutils .utils .discord .embeds import set_embed_author
3333from ghutils .utils .discord .references import (
3434 CommitReference ,
@@ -332,7 +332,7 @@ class Actions(SubGroup):
332332 @app_commands .command ()
333333 async def artifact (self , interaction : Interaction , repo : RepositoryOption ):
334334 await interaction .response .defer (ephemeral = True )
335- view = await SelectArtifactView .new (interaction , repo )
335+ view = await GetArtifactView .new (interaction , repo )
336336 await interaction .followup .send (view = view , ephemeral = True )
337337
338338 class Search (SubGroup ):
Original file line number Diff line number Diff line change 2626from ghutils .utils .strings import join_truthy , truncate_str
2727
2828
29- class SelectArtifactView (LayoutView ):
29+ class GetArtifactView (LayoutView ):
3030 bot : GHUtilsBot
3131 github : GitHub [Any ]
3232 command : AnyInteractionCommand
You can’t perform that action at this time.
0 commit comments