Skip to content

Commit

Permalink
docs: rm quadruple hashes
Browse files Browse the repository at this point in the history
  • Loading branch information
nialov committed Jan 13, 2022
1 parent f2a6c7f commit b6774b6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@

Contains minor fixes and a feature update to `NetworkRandomSampler`.

#### New Features
### New Features

- (random_sampling): Allow not determining topology
when performing random sampling using `NetworkRandomSampler`.

#### Fixes
### Fixes

- (tval): Handle `TypeError` from `shapely.ops.split` in
`split_to_determine_triangle_errors` by checking for the intersection
Expand Down
3 changes: 2 additions & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -556,7 +556,8 @@ def changelog(session):
# Add empty lines after each line of changelog
new_lines = []
for line in changelog_path.read_text(encoding=UTF8).splitlines():
new_lines.append(line)
# Also remove quadruple hashes
new_lines.append(line.replace("####", "###"))
new_lines.append("")

changelog_path.write_text("\n".join(new_lines), encoding=UTF8)
Expand Down

0 comments on commit b6774b6

Please sign in to comment.