Upgrade black to 22.1.0 and fix the corresponding issues

This commit is contained in:
D-X-Y
2022-03-20 23:18:23 -07:00
parent 8d0799dfb1
commit 676e8e411d
3 changed files with 3 additions and 3 deletions

View File

@@ -156,7 +156,7 @@ class Logger(object):
hist.max = float(np.max(values))
hist.num = int(np.prod(values.shape))
hist.sum = float(np.sum(values))
hist.sum_squares = float(np.sum(values ** 2))
hist.sum_squares = float(np.sum(values**2))
# Drop the start of the first bin
bin_edges = bin_edges[1:]