Skip to content

Commit

Permalink
indent fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian-B committed Dec 18, 2024
1 parent 1f02f7f commit 6df8a4d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions spynnaker/pyNN/models/defaults.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,10 @@ def get_map_from_init(
_check_args(skip, default_args, init_method)

as_dict = {arg: value
for arg, value in zip(default_args, default_values)
if ((arg != "self") and
(skip is None or arg not in skip) and
(include is None or arg in include))}
for arg, value in zip(default_args, default_values)
if ((arg != "self") and
(skip is None or arg not in skip) and
(include is None or arg in include))}
return MappingProxyType(as_dict)


Expand Down

0 comments on commit 6df8a4d

Please sign in to comment.