Skip to content

Commit

Permalink
fmt: apply pre-commit
Browse files Browse the repository at this point in the history
  • Loading branch information
abhidg committed May 28, 2024
1 parent be1334d commit 92d7608
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
cache: 'pip'
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
python3 -m pip install --upgrade pip
python3 -m pip install '.[test]'
- name: Lint with flake8
run: |
Expand Down
8 changes: 4 additions & 4 deletions cats/configure.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
import logging
import sys
from collections.abc import Mapping
from typing import Optional, Any
from typing import Any, Optional

import requests
import yaml
Expand All @@ -24,9 +24,9 @@
__all__ = ["get_runtime_config"]


def get_runtime_config(args) -> tuple[APIInterface, str, int,
Optional[list[tuple[int, float]]],
Optional[float]]:
def get_runtime_config(
args,
) -> tuple[APIInterface, str, int, Optional[list[tuple[int, float]]], Optional[float]]:
"""Return the runtime cats configuration from list of command line
arguments and content of configuration file.
Expand Down

0 comments on commit 92d7608

Please sign in to comment.