Commit 48cd1877 authored by BOHMRR's avatar BOHMRR
Browse files

pytest: remove leading whitespace in copyright notice to reduce the number of pylint warnings

parent 8c63cd97
Loading
Loading
Loading
Loading
+29 −29
Original line number Diff line number Diff line
#!/usr/bin/env python3

__license__ = \
__copyright__ = \
"""
(C) 2022 IVAS codec Public Collaboration with portions copyright Dolby International AB, Ericsson AB,
Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD.,
@@ -193,7 +193,7 @@ def cmp_custom(
def main(argv) -> int:
    if len(argv) < 5:
        return usage()
    retval, reason = cmp_custom(*argv[1:])
    retval, _reason = cmp_custom(*argv[1:])
    return retval


+28 −27
Original line number Diff line number Diff line
__copyright__ = \
"""
(C) 2022 IVAS codec Public Collaboration with portions copyright Dolby International AB, Ericsson AB,
Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD.,
+28 −28
Original line number Diff line number Diff line
#!/usr/bin/env python3

__license__ = \
__copyright__ = \
"""
(C) 2022 IVAS codec Public Collaboration with portions copyright Dolby International AB, Ericsson AB,
Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD.,
+4 −2
Original line number Diff line number Diff line
#!/usr/bin/env python3

__license__ = """
__copyright__ = \
"""
(C) 2022 IVAS codec Public Collaboration with portions copyright Dolby International AB, Ericsson AB,
Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD.,
Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange,
@@ -30,7 +31,8 @@ accordance with the laws of the Federal Republic of Germany excluding its confli
the United Nations Convention on Contracts on the International Sales of Goods.
"""

__doc__ = """
__doc__ = \
"""
Script to cut samples from a 16-bit PCM file.

USAGE : cut_pcm.py  in_file_pcm  out_file_pcm  num_channels  sample_rate  start  duration  [gain]
+29 −27
Original line number Diff line number Diff line
#!/usr/bin/env python3

__copyright__ = \
"""
(C) 2022 IVAS codec Public Collaboration with portions copyright Dolby International AB, Ericsson AB,
Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD.,
@@ -30,6 +31,7 @@
the United Nations Convention on Contracts on the International Sales of Goods.
"""

__doc__ = \
"""
Script to run the pytest tests.

Loading