Skip to content

Commit

Permalink
🎨 pre-commit fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
pre-commit-ci[bot] committed Nov 24, 2024
1 parent dde6f1f commit 6bc682f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/mqt/qao/karp/karp_number.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from collections import defaultdict
from functools import partial
from pathlib import Path
from typing import TYPE_CHECKING, Any, Literal, Union
from typing import TYPE_CHECKING, Any, Literal

import matplotlib.pyplot as plt
import networkx as nx
Expand Down Expand Up @@ -209,7 +209,7 @@ def three_sat(
solver_method: Callable[..., Any] | None = None,
read_solution: Literal["print", "file"] | None = None,
solver_params: dict[str, Any] | None = None,
) -> Problem | dict[str, float] | Union[Problem, list[int]]:
) -> Problem | dict[str, float] | list[int]:
"""Initializes and optionally solves the 3-SAT (Satisfiability) problem.
Args:
Expand Down

0 comments on commit 6bc682f

Please sign in to comment.