RemVdH commited on
Commit
91e0cd4
·
verified ·
1 Parent(s): 833c4c8

Create SoundFile.py

Browse files
Files changed (1) hide show
  1. SoundFile.py +6 -0
SoundFile.py ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ class SoundFile:
2
+ def __init__(self, filepath):
3
+ self.filepath = filepath
4
+
5
+ def get_filepath(self):
6
+ return self.filepath