Skip to content

Commit

Permalink
Fixed type annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
Anatoliy Bilenko authored and Anatoliy Bilenko committed Jul 14, 2024
1 parent c08c0ff commit 8ccc65b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions chronoscope/vcd.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ def plot(origin: int, depth_max=50):
gtkw.dumpfile(f"{w}.vcd")

with vcd.VCDWriter(fout, timescale="1 ns", date="today") as writer:
counters = {}
timetable = []
counters: dict = {}
timetable: list[dict] = []
v = timeline_visitor(gtkw, writer, counters, timetable)
db.iterate(origin, None, db.tick, v, 0, depth_max)

Expand Down

0 comments on commit 8ccc65b

Please sign in to comment.