Skip to content

Commit

Permalink
Fix script that isn't marked as static
Browse files Browse the repository at this point in the history
  • Loading branch information
TheByronHimes committed Apr 30, 2024
1 parent 408d5bf commit f9f82c5
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions scripts/script_utils/lock_deps.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,13 @@

import re
from pathlib import Path
from typing import Optional

from packaging.requirements import Requirement


def get_lock_file_deps(
lock_file_path: Path,
exclude: Optional[set[str]] = None,
exclude: set[str] | None = None,
) -> list[Requirement]:
"""Inspect the lock file to get the dependencies.
Expand Down

0 comments on commit f9f82c5

Please sign in to comment.