Merge pull request #7368 from vhadzhiev/vhadzhiev_contribution

fixed Statistics.__add__(), fixes #7355
This commit is contained in:
TW 2023-02-20 18:07:21 +01:00 committed by GitHub
commit 3f2aac8f00
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -79,8 +79,8 @@ class Statistics:
stats.nfiles = self.nfiles + other.nfiles
stats.chunking_time = self.chunking_time + other.chunking_time
stats.hashing_time = self.hashing_time + other.hashing_time
for key in other.files_stats:
stats.files_stats[key] = self.files_stats[key] + other.files_stats[key]
st1, st2 = self.files_stats, other.files_stats
stats.files_stats = defaultdict(int, {key: (st1[key] + st2[key]) for key in st1.keys() | st2.keys()})
return stats