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 Feb 5, 2024
1 parent 1168208 commit 015cbf8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/mqt/core/_core/operations.pyi
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from abc import ABCMeta, abstractmethod
from abc import ABC, abstractmethod
from collections.abc import Mapping, Sequence
from typing import ClassVar, overload

Expand Down Expand Up @@ -90,7 +90,7 @@ class OpType:
def __ne__(self: Self, other: object) -> bool: ...
def __setstate__(self: Self, state: int) -> None: ...

class Operation(metaclass=ABCMeta):
class Operation(ABC):
type_: OpType
controls: set[Control]
num_qubits: int
Expand Down

0 comments on commit 015cbf8

Please sign in to comment.