Skip to content

Commit

Permalink
Merge a725e20 into dd8d65f
Browse files Browse the repository at this point in the history
  • Loading branch information
themperek committed Jul 17, 2019
2 parents dd8d65f + a725e20 commit 47e4992
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion basil/HL/JtagGpio.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class JtagGpio(HardwareLayer):
def __init__(self, intf, conf):
super(JtagGpio, self).__init__(intf, conf)

cfg = yaml.load(self.jtag_gpio_yaml)
cfg = yaml.safe_load(self.jtag_gpio_yaml)
self.reg = StdRegister(driver=None, conf=cfg)

# self.RESETB = 0
Expand Down
2 changes: 1 addition & 1 deletion basil/RL/RegisterLayer.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# ------------------------------------------------------------
#

from collections import Callable
from collections.abc import Callable

from basil.dut import Base

Expand Down

0 comments on commit 47e4992

Please sign in to comment.