Skip to content

Commit

Permalink
Reformat a couple files
Browse files Browse the repository at this point in the history
  • Loading branch information
Cito committed Mar 12, 2024
1 parent caf7fa5 commit 3908a11
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
11 changes: 6 additions & 5 deletions scripts/script_utils/deps.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
# limitations under the License.
#
"""Contains utils for working with dependencies, lock files, etc."""

from copy import deepcopy
from pathlib import Path
from typing import Any
Expand Down Expand Up @@ -55,11 +56,11 @@ def remove_self_dependencies(pyproject: dict) -> dict:

if "optional-dependencies" in project_metadata:
for group in project_metadata["optional-dependencies"]:
project_metadata["optional-dependencies"][
group
] = exclude_from_dependency_list(
package_name=package_name,
dependencies=project_metadata["optional-dependencies"][group],
project_metadata["optional-dependencies"][group] = (
exclude_from_dependency_list(
package_name=package_name,
dependencies=project_metadata["optional-dependencies"][group],
)
)

return modified_pyproject
Expand Down
1 change: 1 addition & 0 deletions scripts/script_utils/lock_deps.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
# limitations under the License.
#
"""Provides a function to get all dependencies from the lock file"""

import re
from pathlib import Path
from typing import Optional
Expand Down
1 change: 0 additions & 1 deletion src/ars/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@

"""Entrypoint of the package"""


from ars.cli import cli

if __name__ == "__main__":
Expand Down
1 change: 1 addition & 0 deletions src/ars/adapters/inbound/fastapi_/configure.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
# limitations under the License.

"""Utils to configure the FastAPI app"""

from typing import Any

from fastapi import FastAPI
Expand Down

0 comments on commit 3908a11

Please sign in to comment.