Skip to content

Commit c0a5fbe

Browse files
authored
close function call parenthesis
1 parent 00901aa commit c0a5fbe

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/restic_compose_backup/restic.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ def is_initialized(repository: str) -> bool:
7979
def forget(repository: str, daily: str, weekly: str, monthly: str, yearly: str):
8080
commands.run(restic(repository, [
8181
'unlock'
82-
])
82+
]))
8383
return commands.run(restic(repository, [
8484
'forget',
8585
'--group-by',
@@ -98,7 +98,7 @@ def forget(repository: str, daily: str, weekly: str, monthly: str, yearly: str):
9898
def prune(repository: str):
9999
commands.run(restic(repository, [
100100
'unlock'
101-
])
101+
]))
102102
return commands.run(restic(repository, [
103103
'prune',
104104
]))

0 commit comments

Comments
 (0)