From 3e0c68b20b37c3c8714b9166f3f2c02300ad40c1 Mon Sep 17 00:00:00 2001 From: Luke Pfister Date: Mon, 27 Sep 2021 10:22:19 -0600 Subject: [PATCH] Fix up biconvolve docstring --- scico/operator/biconvolve.py | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/scico/operator/biconvolve.py b/scico/operator/biconvolve.py index 2218b8385..6a8570fd8 100644 --- a/scico/operator/biconvolve.py +++ b/scico/operator/biconvolve.py @@ -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 @@ -21,6 +18,8 @@ from scico.typing import BlockShape, DType, JaxArray from scico.util import is_nested +__author__ = """Luke Pfister """ + class BiConvolve(Operator): """BiConvolution operator.