Skip to content

Commit

Permalink
Fix metaclass error #253
Browse files Browse the repository at this point in the history
  • Loading branch information
LouisK92 committed Feb 27, 2023
1 parent 1059592 commit c995f53
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions spapros/plotting/_masked_dotplot.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
from abc import ABC
from typing import Literal
from typing import Mapping
from typing import Optional
Expand All @@ -21,7 +20,7 @@
ColorLike = Union[str, Tuple[float, ...]]


class _AxesSubplot(Axes, axes.SubplotBase, ABC):
class _AxesSubplot(Axes, axes.SubplotBase):
"""Intersection between Axes and SubplotBase: Has methods of both"""


Expand Down

0 comments on commit c995f53

Please sign in to comment.