Skip to content

Commit a084d4a

Browse files
committed
updating code base and yml file
1 parent f60f413 commit a084d4a

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55

66
jobs:
77
build:
8-
name: Install dependencies and build project
8+
name: Build Project
99
runs-on: ubuntu-latest
1010
steps:
1111
- uses: actions/checkout@v4

src/guildmaster/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import sys
22
import fire
3-
from guildmaster.tasks.role_manager import DiscordRoleManager
3+
from tasks.role_manager import DiscordRoleManager
44

55

66
class GuildMasterCommands:

src/guildmaster/tasks/role_manager.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
import discord
33
from tqdm.asyncio import tqdm
44

5-
from guildmaster.config.logger import Logger
6-
from guildmaster.client.discord_client import DiscordClient
5+
from config.logger import Logger
6+
from client.discord_client import DiscordClient
77

88

99
class DiscordRoleManager:

0 commit comments

Comments
 (0)