Skip to content

Commit

Permalink
Remove drawing from analogblock
Browse files Browse the repository at this point in the history
  • Loading branch information
dominikandreasseitz committed Oct 2, 2023
1 parent b7deb6a commit 34cadc9
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions qadence/blocks/analog.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from abc import abstractproperty
from dataclasses import dataclass
from typing import Any, Tuple
from typing import Tuple

import numpy as np
import torch
Expand Down Expand Up @@ -33,9 +33,6 @@ def __ascii__(self, console: Console) -> RenderableType:
def __eq__(self, other: object) -> bool:
raise NotImplementedError

def __grid__(self, depth: int) -> tuple[tuple[int, ...], Any]:
raise NotImplementedError

@classmethod
def _from_dict(cls, d: dict) -> AnalogBlock:
raise NotImplementedError
Expand Down

0 comments on commit 34cadc9

Please sign in to comment.