blacken code

This commit is contained in:
Fischer Moseley 2023-02-09 15:12:07 -05:00
parent 5f3dc9dd5b
commit b11f07857a
1 changed files with 4 additions and 4 deletions

View File

@ -284,10 +284,10 @@ def make_widths(config):
s = sum(widths)
slices = []
for width in widths:
slices.append( (s-1, s-width) )
slices.append((s - 1, s - width))
s = s - width
assert s == 0, 'Probe sizes are weird, cannot slice bits properly'
assert s == 0, "Probe sizes are weird, cannot slice bits properly"
return slices
@ -298,7 +298,7 @@ def export_waveform(config, data, path):
from vcd import VCDWriter
vcd_file = open(path, "w")
# Use the datetime format that iVerilog uses
timestamp = datetime.now().strftime("%a %b %w %H:%M:%S %Y")