Skip to content

Commit

Permalink
fix: linters and formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
mikonse committed Aug 26, 2023
1 parent cc9c577 commit cf8d4df
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 7 deletions.
4 changes: 0 additions & 4 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,6 @@
import sys
from pathlib import Path

import pydantic
import yaml
from pydantic.fields import FieldInfo

HERE = Path(__file__).parent
sys.path[:0] = [str(HERE.parent), str(HERE / "_ext")]
BUILD_DIR = HERE / "_build"
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@ test = [
]
dev = [
"black",
"mypy~=0.991",
"mypy~=1.5",
"types-PyYAML~=6.0",
"pylint~=2.15",
"pylint~=2.17",
]
docs = [
"sphinx",
Expand Down
2 changes: 1 addition & 1 deletion tools/build_debian_packages.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def run_build(self, dist: str, skip_tests=False):

if self._failed:
print("not building %s due to earlier failure" % (dist,))
raise Exception("failed")
raise RuntimeError("failed")

try:
self._inner_build(dist, skip_tests)
Expand Down

0 comments on commit cf8d4df

Please sign in to comment.