Skip to content

Commit

Permalink
Fix pre-commit
Browse files Browse the repository at this point in the history
  • Loading branch information
giswqs committed Apr 8, 2024
1 parent bc72d64 commit c938267
Show file tree
Hide file tree
Showing 9 changed files with 23 additions and 24 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v5
with:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

- Free software: MIT License
- Documentation: https://giswqs.github.io/HyperCoast


## Features

Expand Down
5 changes: 2 additions & 3 deletions docs/examples/intro.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,14 @@
"metadata": {},
"outputs": [],
"source": [
"print('Hello World!')"
"print(\"Hello World!\")"
]
}
],
"metadata": {
"language_info": {
"name": "python"
},
"orig_nbformat": 4
}
},
"nbformat": 4,
"nbformat_minor": 2
Expand Down
2 changes: 1 addition & 1 deletion docs/hypercoast.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@

# hypercoast module

::: hypercoast.hypercoast
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

- Free software: MIT License
- Documentation: <https://giswqs.github.io/hypercoast>


## Features

Expand Down
6 changes: 3 additions & 3 deletions hypercoast/common.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""The common module contains common functions and classes used by the other modules.
"""


def hello_world():
"""Prints "Hello World!" to the console.
"""
print("Hello World!")
"""Prints "Hello World!" to the console."""
print("Hello World!")
2 changes: 1 addition & 1 deletion mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ plugins:
allow_errors: false
ignore: ["conf.py"]
execute_ignore: ["*ignore.ipynb"]

markdown_extensions:
- admonition
- abbr
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
numpy
numpy
24 changes: 12 additions & 12 deletions requirements_dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,28 +2,28 @@ black
black[jupyter]
build
bump-my-version
click
codespell
wheel
flake8
twine
click
pytest
pytest-runner

ipykernel
livereload
nbconvert
nbformat
sphinx
watchdog
mkdocs
mkdocs-git-revision-date-plugin
mkdocs-git-revision-date-localized-plugin
mkdocs-git-revision-date-plugin
mkdocs-jupyter>=0.24.0
mkdocs-material>=9.1.3
mkdocs-material>=9.1.3
mkdocs-pdf-export-plugin
mkdocstrings
mkdocstrings
mkdocstrings-crystal
mkdocstrings-python-legacy
nbconvert
nbformat
pygments
pymdown-extensions
pytest
pytest-runner
sphinx
twine
watchdog
wheel

0 comments on commit c938267

Please sign in to comment.