devve1 commited on
Commit
fe55bc9
1 Parent(s): 04e3514

Update storage.py

Browse files
Files changed (1) hide show
  1. storage.py +1 -1
storage.py CHANGED
@@ -2,5 +2,5 @@ import File
2
 
3
  class LocalFileStore:
4
  def __init__(self, file_type: File, path, name: str):
5
- self.file_path = os.path.join(self.path, f'{name}_{file_type.get_file_name()}.{file_type.get_extension()}')
6
 
 
2
 
3
  class LocalFileStore:
4
  def __init__(self, file_type: File, path, name: str):
5
+ self.file_path = os.path.join(self.path, f'{name}_{file_type.get_file_name()}.{file_type.get_extension_file()}')
6