Skip to content
This repository has been archived by the owner on Aug 9, 2024. It is now read-only.

Commit

Permalink
fix spelling errors and formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesbeedy committed Feb 15, 2024
1 parent 54cc3fb commit d88d740
Show file tree
Hide file tree
Showing 5 changed files with 122 additions and 145 deletions.
10 changes: 5 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ target-version = ["py38"]
# Linting tools configuration
[tool.ruff]
line-length = 99
select = ["E", "W", "F", "C", "N", "D", "I001"]
extend-ignore = [
lint.select = ["E", "W", "F", "C", "N", "D", "I001"]
lint.extend-ignore = [
"D203",
"D204",
"D213",
Expand All @@ -49,9 +49,9 @@ extend-ignore = [
"D409",
"D413",
]
ignore = ["E501", "D107"]
lint.ignore = ["E501", "D107"]
extend-exclude = ["__pycache__", "*.egg_info"]
per-file-ignores = {"tests/*" = ["D100","D101","D102","D103","D104"]}
lint.per-file-ignores = {"tests/*" = ["D100","D101","D102","D103","D104"]}

[tool.ruff.mccabe]
[tool.ruff.lint.mccabe]
max-complexity = 10
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
ops==2.*
influxdb==5.3.1
jinja2==3.1.2
distro
pycryptodome
1 change: 1 addition & 0 deletions src/interface_prolog_epilog.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Slurm Prolog and Epilog interface."""

import json
import logging

Expand Down
Loading

0 comments on commit d88d740

Please sign in to comment.