Skip to content

Commit

Permalink
remove useless space
Browse files Browse the repository at this point in the history
  • Loading branch information
rp- committed Sep 21, 2021
1 parent 775d830 commit f574743
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions linstor/linstorapi.py
Original file line number Diff line number Diff line change
Expand Up @@ -3431,7 +3431,7 @@ def backup_create(self, remote_name, resource_name, incremental=True, node_name=
return self._rest_request(
apiconsts.API_CRT_BACKUP,
"POST",
path ,
path,
body
)

Expand Down Expand Up @@ -3505,7 +3505,7 @@ def backup_restore(
return self._rest_request(
apiconsts.API_RESTORE_BACKUP,
"POST",
path ,
path,
body)

def backup_abort(
Expand All @@ -3528,7 +3528,7 @@ def backup_abort(
return self._rest_request(
apiconsts.API_ABORT_BACKUP,
"POST",
path ,
path,
body
)

Expand Down Expand Up @@ -3564,7 +3564,7 @@ def backup_ship(
return self._rest_request(
apiconsts.API_SHIP_BACKUP,
"POST",
path ,
path,
body
)

Expand All @@ -3591,7 +3591,7 @@ def backup_info(
return self._rest_request(
apiconsts.API_BACKUP_INFO,
"POST",
path ,
path,
body)

def remote_list(self):
Expand Down

0 comments on commit f574743

Please sign in to comment.