Skip to content

Commit

Permalink
Add missing newlines to ends of text files.
Browse files Browse the repository at this point in the history
  • Loading branch information
emcd committed Dec 22, 2024
1 parent 606bf6e commit 6f3948d
Show file tree
Hide file tree
Showing 19 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/core--initializer.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -113,4 +113,4 @@ jobs:
run: |
set -eu
echo "targets=[]" >>${GITHUB_OUTPUT}
cat ${GITHUB_OUTPUT}
cat ${GITHUB_OUTPUT}
2 changes: 1 addition & 1 deletion data/templates/coverage.svg.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@
{{ value_text }}
</text>
</g>
</svg>
</svg>
2 changes: 1 addition & 1 deletion data/templates/website.html.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -55,4 +55,4 @@
</tbody>
</table>
</body>
</html>
</html>
2 changes: 1 addition & 1 deletion documentation/sphinx/api.rst
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@ Package ``emcd_projects``
Module ``emcd_projects.exceptions``
-------------------------------------------------------------------------------

.. automodule:: emcd_projects.exceptions
.. automodule:: emcd_projects.exceptions
2 changes: 1 addition & 1 deletion documentation/sphinx/contribution/conduct.rst
Original file line number Diff line number Diff line change
Expand Up @@ -75,4 +75,4 @@ worth reading:
showcased responses to "stupid questions" may not be acceptable)

.. note:: Please do not contact the authors of the above documents
for anything related to this project.
for anything related to this project.
2 changes: 1 addition & 1 deletion documentation/sphinx/contribution/contacts.rst
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ Ways to Contribute

* Fork the repository and submit `pull requests
<https://github.com/emcd/python-project-common/pulls>`_ to improve the
library or its documentation.
library or its documentation.
2 changes: 1 addition & 1 deletion documentation/sphinx/contribution/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@ conduct for the project.

conduct
contacts
../development/index
../development/index
2 changes: 1 addition & 1 deletion documentation/sphinx/development/devapi.rst
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@ Module ``emcd_projects.__``
-------------------------------------------------------------------------------

.. automodule:: emcd_projects.__
:ignore-module-all: true
:ignore-module-all: true
2 changes: 1 addition & 1 deletion documentation/sphinx/development/style.rst
Original file line number Diff line number Diff line change
Expand Up @@ -254,4 +254,4 @@ Cases where manual intervention may be needed:
* Nested data structures with mixed single-line and multi-line sections

When in doubt, optimize for readability while staying within the general
principles outlined in this guide.
principles outlined in this guide.
2 changes: 1 addition & 1 deletion template/.github/workflows/core--initializer.yaml.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -125,4 +125,4 @@ jobs:
{%- else %}
echo "targets=[]" >>${GITHUB_OUTPUT}
{%- endif %}
cat ${GITHUB_OUTPUT}
cat ${GITHUB_OUTPUT}
2 changes: 1 addition & 1 deletion template/documentation/sphinx/api.rst.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@ Package ``{{ package_name }}``
Module ``{{ package_name }}.exceptions``
-------------------------------------------------------------------------------

.. automodule:: {{ package_name }}.exceptions
.. automodule:: {{ package_name }}.exceptions
2 changes: 1 addition & 1 deletion template/documentation/sphinx/contribution/conduct.rst
Original file line number Diff line number Diff line change
Expand Up @@ -75,4 +75,4 @@ worth reading:
showcased responses to "stupid questions" may not be acceptable)

.. note:: Please do not contact the authors of the above documents
for anything related to this project.
for anything related to this project.
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ Ways to Contribute

* Fork the repository and submit `pull requests
<https://github.com/{{ gh_owner }}/{{ project_name }}/pulls>`_ to improve the
library or its documentation.
library or its documentation.
2 changes: 1 addition & 1 deletion template/documentation/sphinx/contribution/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@ conduct for the project.

conduct
contacts
../development/index
../development/index
2 changes: 1 addition & 1 deletion template/documentation/sphinx/development/devapi.rst.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@ Module ``{{ package_name }}.__``
-------------------------------------------------------------------------------

.. automodule:: {{ package_name }}.__
:ignore-module-all: true
:ignore-module-all: true
2 changes: 1 addition & 1 deletion template/documentation/sphinx/development/style.rst.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -256,4 +256,4 @@ Cases where manual intervention may be needed:
* Nested data structures with mixed single-line and multi-line sections

When in doubt, optimize for readability while staying within the general
principles outlined in this guide.
principles outlined in this guide.
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ regex = '1.11'
{%- if enable_property_tests %}
[dev-dependencies]
proptest = '1.5'
{%- endif %}
{%- endif %}
Original file line number Diff line number Diff line change
Expand Up @@ -60,4 +60,4 @@ fn main() {
} else {
panic!("Could not find __version__ in __init__.py");
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@ const VERSION: &str = env!("CRATE_VERSION");
fn {{ extension_name }}(_py: Python<'_>, m: &PyModule) -> PyResult<()> {
m.add("__version__", VERSION)?;
Ok(())
}
}

0 comments on commit 6f3948d

Please sign in to comment.