diff --git a/src/borg/helpers/msgpack.py b/src/borg/helpers/msgpack.py index dce6eb33..54c3b9cb 100644 --- a/src/borg/helpers/msgpack.py +++ b/src/borg/helpers/msgpack.py @@ -84,7 +84,7 @@ class Packer(mp_Packer): use_single_float=False, autoreset=True, use_bin_type=USE_BIN_TYPE, - strict_types=False + strict_types=False, ): assert unicode_errors == UNICODE_ERRORS super().__init__( @@ -133,7 +133,7 @@ class Unpacker(mp_Unpacker): unicode_errors=UNICODE_ERRORS, max_buffer_size=0, ext_hook=ExtType, - strict_map_key=False + strict_map_key=False, ): assert raw == RAW assert unicode_errors == UNICODE_ERRORS diff --git a/src/borg/manifest.py b/src/borg/manifest.py index 0768ce44..a9609884 100644 --- a/src/borg/manifest.py +++ b/src/borg/manifest.py @@ -113,7 +113,7 @@ class Archives(abc.MutableMapping): older=None, newer=None, oldest=None, - newest=None + newest=None, ): """ Return list of ArchiveInfo instances according to the parameters.