Skip to content

Commit

Permalink
feat: adding filename to Save/Load models
Browse files Browse the repository at this point in the history
  • Loading branch information
dbirman committed Apr 4, 2024
1 parent 9faec06 commit e79b3ef
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions src/vbl_aquarium/models/dock.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,12 @@ class DownloadModel(VBLBaseModel):

# Models for sending save/load messages
class SaveModel(VBLBaseModel):
bucket: str
password: str
filename: str
bucket: str = ''
password: str = ''


class LoadModel(VBLBaseModel):
bucket: str
password: str
filename: str
bucket: str = ''
password: str = ''

0 comments on commit e79b3ef

Please sign in to comment.