Skip to content

Commit

Permalink
fix: correct method argument
Browse files Browse the repository at this point in the history
  • Loading branch information
sanjayankur31 committed Nov 8, 2024
1 parent 9bdfa61 commit 7623f4a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion neuroml/nml/helper_methods.py
Original file line number Diff line number Diff line change
Expand Up @@ -1360,7 +1360,7 @@ def morphinfo(self, segment_detail=False, string_buffer=None):
if segment_detail:
print(file=string_buffer)
for sg in self.morphology.segment_groups:
self.get_segment_group_info(sg.id, file=string_buffer)
self.get_segment_group_info(sg.id, string_buffer=string_buffer)
else:
print(file=string_buffer)
for sg in self.morphology.segment_groups:
Expand Down
4 changes: 2 additions & 2 deletions neuroml/nml/nml.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# -*- coding: utf-8 -*-

#
# Generated Fri Nov 8 15:15:22 2024 by generateDS.py version 2.44.1.
# Generated Fri Nov 8 16:07:39 2024 by generateDS.py version 2.44.1.
# Python 3.11.10 (main, Sep 9 2024, 00:00:00) [GCC 14.2.1 20240801 (Red Hat 14.2.1-1)]
#
# Command line options:
Expand Down Expand Up @@ -48928,7 +48928,7 @@ def morphinfo(self, segment_detail=False, string_buffer=None):
if segment_detail:
print(file=string_buffer)
for sg in self.morphology.segment_groups:
self.get_segment_group_info(sg.id, file=string_buffer)
self.get_segment_group_info(sg.id, string_buffer=string_buffer)
else:
print(file=string_buffer)
for sg in self.morphology.segment_groups:
Expand Down

0 comments on commit 7623f4a

Please sign in to comment.