chebpy/chebpy

View on GitHub
chebpy/core/smoothfun.py

Summary

Maintainability
A
0 mins
Test Coverage
from abc import ABC

from .onefun import Onefun


class Smoothfun(Onefun, ABC):
    pass