Skip to content

Commit

Permalink
Fixed import statements.
Browse files Browse the repository at this point in the history
  • Loading branch information
Zeynschweyk committed Dec 23, 2021
1 parent e3e711c commit e650961
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 8 deletions.
7 changes: 4 additions & 3 deletions __init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
from .note import Note
from .chord import Chord
from .scale import Scale
from .UsefulFunctions import *
from .chord_types import types_of_chords
from .scale_types import types_of_scales
from .note import Note
from .chord import Chord
from .scale import Scale


4 changes: 2 additions & 2 deletions chord.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from note import Note
from chord_types import types_of_chords
from .note import Note
from .chord_types import types_of_chords


class Chord:
Expand Down
2 changes: 1 addition & 1 deletion note.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from UsefulFunctions import *
from .UsefulFunctions import *


class Note:
Expand Down
4 changes: 2 additions & 2 deletions scale.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from note import Note
from scale_types import types_of_scales
from .note import Note
from .scale_types import types_of_scales


class Scale:
Expand Down

0 comments on commit e650961

Please sign in to comment.