Skip to content

Whitespace changes for black-25 #3421

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Aug 13, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion doc/htmldoc/developer_space/templates/pynest_api_template.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@
# You should have received a copy of the GNU General Public License
# along with NEST. If not, see <http://www.gnu.org/licenses/>.

"""[[ This template demonstrates how to create a docstring for the PyNEST API.
"""
[[ This template demonstrates how to create a docstring for the PyNEST API.

If you have modified an API, please ensure you update the docstring!

Expand Down
2 changes: 1 addition & 1 deletion pynest/nest/lib/hl_api_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -755,7 +755,7 @@ def format_row_(s, t, sm, w, dly):

# 35 is arbitrarily chosen.
if len(srcs) >= MAX_SIZE_FULL_PRINT and not self.print_full:
# u'\u22EE ' is the unicode for vertical ellipsis, used when we have many connections
# u'\u22ee ' is the unicode for vertical ellipsis, used when we have many connections
srcs = srcs[:15] + ["\u22ee "] + srcs[-15:]
trgt = trgt[:15] + ["\u22ee "] + trgt[-15:]
wght = wght[:15] + ["\u22ee "] + wght[-15:]
Expand Down
Loading