From b64076951e6ec51beb41fe01d375fd835dcbe17e Mon Sep 17 00:00:00 2001 From: richter Date: Wed, 2 Oct 2013 15:45:20 +0200 Subject: [PATCH] adjust doc --- obspy/core/trace.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/obspy/core/trace.py b/obspy/core/trace.py index 281d1b77112..d20abce935b 100644 --- a/obspy/core/trace.py +++ b/obspy/core/trace.py @@ -1712,9 +1712,8 @@ def taper(self, type='cosine', max_percentage=0.05, max_length=None, :type max_percentage: None, float :param max_percentage: Decimal percentage of taper at one end (ranging from 0. to 0.5). Default is 0.05 (5%). - :param max_length: Length of taper at one end in seconds. :type max_length: None, float - :param max_length: + :param max_length: Length of taper at one end in seconds. :type side: str :param side: Specify if both sides should be tapered (default, "both") or if only the left half ("left") or right half ("right") should be @@ -1724,7 +1723,7 @@ def taper(self, type='cosine', max_percentage=0.05, max_length=None, If both `max_percentage` and `max_length` are set to a float, the shorter tape length is used. If both `max_percentage` and - `max_length` are set to `None`, the whole trace will be tapered + `max_length` are set to `None`, the whole trace will be tapered. .. note::