diff --git a/_version.py b/_version.py index 0d811d5..cb88aa7 100644 --- a/_version.py +++ b/_version.py @@ -90,9 +90,7 @@ def get_version_info_from_git() -> str: "--first-parent", ] try: - p = subprocess.run( - command, check=False, cwd=repo_dir, capture_output=True - ) + p = subprocess.run(command, check=False, cwd=repo_dir, capture_output=True) except Exception as e: warning(f"Could not get {project_name} version: {e}") p = None diff --git a/pyproject.toml b/pyproject.toml index 3eedf38..3bea71c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,3 @@ -[tool.ruff] -line-length = 80 - [tool.ruff.lint] # Run all the rules, we turn some rules off in the file itself. select = ["ALL"]