We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 870e142 commit 637d8a8Copy full SHA for 637d8a8
musicPackages.py
@@ -27,6 +27,8 @@
27
############################################################################
28
29
import json
30
+import os
31
+
32
class MusicPackage:
33
name_IT = None
34
name_EN = None
@@ -96,7 +98,6 @@ def get_instance(cls):
96
98
def __init__(self):
97
99
self.packages = dict()
100
with open('./sounds/notes/music_package.json') as json_file:
- print("99 musik pac")
101
data = json.load(json_file)
102
for p in data['packages']:
103
@@ -111,6 +112,7 @@ def __init__(self):
111
112
self.packages[p] = mp
113
114
115
116
def deletePackage(self, packageName):
117
print("rimozione pacchetto")
118
if packageName in self.packages:
0 commit comments