Mentions légales du service

Skip to content
Snippets Groups Projects
Commit c503c3c1 authored by SOLIMAN Sylvain's avatar SOLIMAN Sylvain :coffee:
Browse files

ruff stuff

parent 143db682
No related branches found
No related tags found
No related merge requests found
Pipeline #940943 passed
...@@ -17,5 +17,6 @@ GNU General Public License for more details. ...@@ -17,5 +17,6 @@ GNU General Public License for more details.
You should have received a copy of the GNU General Public License You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
""" """
# Don't forget to git tag v<version> && git push --tags # Don't forget to git tag v<version> && git push --tags
version = "1.3.1" # pylint: disable=invalid-name version = "1.3.1" # pylint: disable=invalid-name
...@@ -15,6 +15,7 @@ GNU General Public License for more details. ...@@ -15,6 +15,7 @@ GNU General Public License for more details.
You should have received a copy of the GNU General Public License You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
""" """
import json import json
import subprocess import subprocess
import time import time
......
...@@ -117,7 +117,7 @@ view = [ ...@@ -117,7 +117,7 @@ view = [
"open docs/_build/html/index.html", "open docs/_build/html/index.html",
] ]
[tool.ruff] [tool.ruff.lint]
select = ["C", "E", "F", "W", "D", "A", "I", "B"] select = ["C", "E", "F", "W", "D", "A", "I", "B"]
ignore = ["D203", "D212", "D213", "E501", "D206", "W191", "C901"] ignore = ["D203", "D212", "D213", "E501", "D206", "W191", "C901"]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment