Skip to content

Commit e10ede6

Browse files
committed
fix code style
1 parent 7f95a85 commit e10ede6

File tree

3 files changed

+0
-3
lines changed

3 files changed

+0
-3
lines changed

mergin/client_pull.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,6 @@ def download_project_finalize(job):
211211
job.mp.log.info("--- download finished")
212212

213213
for task in job.update_tasks:
214-
215214
# right now only copy tasks...
216215
task.apply(job.directory, job.mp)
217216

mergin/client_push.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,6 @@ def __init__(self, file_path, size, transaction_id, chunk_id, chunk_index):
5555
self.transaction_id = transaction_id # ID of the transaction
5656

5757
def upload_blocking(self, mc, mp):
58-
5958
with open(self.file_path, "rb") as file_handle:
6059
file_handle.seek(self.chunk_index * UPLOAD_CHUNK_SIZE)
6160
data = file_handle.read(UPLOAD_CHUNK_SIZE)

mergin/test/test_client.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,6 @@ def test_ignore_files(mc):
305305

306306

307307
def test_sync_diff(mc):
308-
309308
test_project = f"test_sync_diff"
310309
project = API_USER + "/" + test_project
311310
project_dir = os.path.join(TMP_DIR, test_project) # primary project dir for updates

0 commit comments

Comments
 (0)