Skip to content

Commit

Permalink
style: flake8 corrections
Browse files Browse the repository at this point in the history
  • Loading branch information
gtdang committed Mar 22, 2024
1 parent 69eab20 commit 603f45a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion hnn_core/docs.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
] = """
source : str
Original source of the hdf5 file. [obj, param, json]
obj: From an instance of a Network object
obj: From an instance of a Network object
param: From a converted param parameter file
json: From a converted json parameter file
"""
2 changes: 1 addition & 1 deletion hnn_core/hnn_io.py
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ def _read_connectivity(net, conns_data):
# Overwrite drive connections
net.connectivity = list()

for i, conn_data in enumerate(conns_data):
for _i, conn_data in enumerate(conns_data):
src_gids = [int(s) for s in conn_data['gid_pairs'].keys()]
target_gids_nested = [target_gid for target_gid
in conn_data['gid_pairs'].values()]
Expand Down

0 comments on commit 603f45a

Please sign in to comment.