Skip to content

Commit

Permalink
Fix flake8 error
Browse files Browse the repository at this point in the history
  • Loading branch information
xchoo committed Nov 23, 2023
1 parent 3936d0b commit b6a7d8d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nengo_fpga/tests/test_networks.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ def test_init_default(config_contents, gen_configs, mocker):
assert dummy_net.connection.pre == dummy_net.ensemble
assert dummy_net.connection.post == dummy_net.output
assert dummy_net.connection.function is None
assert type(dummy_net.connection.transform) == nengo.transforms.NoTransform
assert isinstance(dummy_net.connection.transform, nengo.transforms.NoTransform)
assert np.all(
dummy_net.connection.eval_points == nengo.Connection.eval_points.default
)
Expand Down

0 comments on commit b6a7d8d

Please sign in to comment.