diff --git a/src/basic_memory/cli/commands/cloud/rclone_commands.py b/src/basic_memory/cli/commands/cloud/rclone_commands.py index 432d2043..e99372ee 100644 --- a/src/basic_memory/cli/commands/cloud/rclone_commands.py +++ b/src/basic_memory/cli/commands/cloud/rclone_commands.py @@ -31,8 +31,10 @@ MIN_RCLONE_VERSION_EMPTY_DIRS = (1, 64, 0) # These headers bypass edge cache and force reads/writes against the origin. # See: https://www.tigrisdata.com/docs/objects/consistency/ TIGRIS_CONSISTENCY_HEADERS = [ - "--header-download", "X-Tigris-Consistent: true", - "--header-upload", "X-Tigris-Consistent: true", + "--header-download", + "X-Tigris-Consistent: true", + "--header-upload", + "X-Tigris-Consistent: true", ] diff --git a/tests/test_rclone_commands.py b/tests/test_rclone_commands.py index 2e6910f6..f07bbe25 100644 --- a/tests/test_rclone_commands.py +++ b/tests/test_rclone_commands.py @@ -8,7 +8,6 @@ import pytest from basic_memory.cli.commands.cloud.rclone_commands import ( MIN_RCLONE_VERSION_EMPTY_DIRS, - TIGRIS_CONSISTENCY_HEADERS, RcloneError, SyncProject, bisync_initialized,