From a2f7b4588fc0a7f99a536d980e3778c8c12ea00d Mon Sep 17 00:00:00 2001 From: Martin Vrachev Date: Tue, 1 Feb 2022 12:29:50 +0200 Subject: [PATCH] Fix new space warning by black Signed-off-by: Martin Vrachev --- examples/repo_example/hashed_bin_delegation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/repo_example/hashed_bin_delegation.py b/examples/repo_example/hashed_bin_delegation.py index 6041216f..4fbfbd82 100644 --- a/examples/repo_example/hashed_bin_delegation.py +++ b/examples/repo_example/hashed_bin_delegation.py @@ -74,7 +74,7 @@ def _in(days: float) -> datetime: # Compared to decimal, hexadecimal numbers can express higher numbers with # fewer digits and thus further decrease metadata sizes. With the above prefix # length of 2 we can represent at most ... -NUMBER_OF_PREFIXES = 16 ** PREFIX_LEN # ... 256 prefixes, i.e. 00, 01, ..., ff. +NUMBER_OF_PREFIXES = 16**PREFIX_LEN # ... 256 prefixes, i.e. 00, 01, ..., ff. # # If the number of bins is a power of two, hash prefixes are evenly distributed # over all bins, which allows to calculate the uniform size of ...