Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix up biconvolve docstring #14

Merged
merged 1 commit into from
Sep 27, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions scico/operator/biconvolve.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,11 @@
# -*- coding: utf-8 -*-
# Copyright (C) 2020-2021 by SCICO Developers
# All rights reserved. BSD 3-clause License.
# This file is part of the SCICO package. Details of the copyright and
# user license can be found in the 'LICENSE' file distributed with the
# package.

"""Bi."""


# needed to annotate a class method that returns the encapsulating class
# see https://www.python.org/dev/peps/pep-0563/
"""Biconvolution operator."""


import numpy as np
Expand All @@ -21,6 +18,8 @@
from scico.typing import BlockShape, DType, JaxArray
from scico.util import is_nested

__author__ = """Luke Pfister <[email protected]>"""


class BiConvolve(Operator):
"""BiConvolution operator.
Expand Down