Skip to content

Commit

Permalink
Correct relative imports
Browse files Browse the repository at this point in the history
Should allow github's test runners to run properly again.
  • Loading branch information
Yochien committed Aug 7, 2023
1 parent 9c9ca3c commit 6300159
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion src/commands.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
from abc import ABC, abstractmethod
from textwrap import dedent
from npc import NPC, NPCList, findList

from src.npc import NPC, NPCList, findList


class Command(ABC):
Expand Down
4 changes: 2 additions & 2 deletions src/encounter.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import commands as cmd
from npc import NPCList
import src.commands as cmd
from src.npc import NPCList


def initialize_commands() -> list[cmd.Command]:
Expand Down

0 comments on commit 6300159

Please sign in to comment.