Skip to content

Commit

Permalink
Remove drawing from abstractblock
Browse files Browse the repository at this point in the history
  • Loading branch information
dominikandreasseitz committed Oct 2, 2023
1 parent d4ea303 commit b7deb6a
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions qadence/blocks/abstract.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from dataclasses import dataclass
from functools import cached_property
from pathlib import Path
from typing import Any, ClassVar, Iterable, Tuple, Union, get_args
from typing import ClassVar, Iterable, Tuple, Union, get_args

import sympy
import torch
Expand Down Expand Up @@ -241,10 +241,6 @@ def __repr__(self) -> str:
def depth(self) -> int:
pass

@abstractmethod
def __grid__(self, depth: int) -> tuple[tuple[int, ...], Any]:
pass

@abstractmethod
def __ascii__(self, console: Console) -> RenderableType:
pass
Expand Down

0 comments on commit b7deb6a

Please sign in to comment.