Skip to content

Commit

Permalink
fixed circular imports
Browse files Browse the repository at this point in the history
  • Loading branch information
KiloOscarSix committed May 6, 2023
1 parent 6ff2e52 commit 2648b91
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions CharacterService_ren.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
from __future__ import annotations
from typing import Optional
from typing import Optional, TYPE_CHECKING
from game.characters.ICharacter_ren import ICharacter

import renpy.exports as renpy

from game.characters.Relationship_ren import Relationship
from game.characters.Moods_ren import Moods

from game.characters.PlayableCharacters_ren import mc
if TYPE_CHECKING:
from game.characters.PlayableCharacters_ren import mc

"""renpy
init python:
Expand Down

0 comments on commit 2648b91

Please sign in to comment.