diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2015-07-26 06:56:58 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2015-07-26 06:56:58 -0400 |
commit | fd2284632777a235ac663b7b9912246b30bc538b (patch) | |
tree | 7e0fa1d7f0a1a830bb49c275054c855399ddd6e1 /coverage/files.py | |
parent | 498f7c997393752fd626af2c4353d5c9d7a85806 (diff) | |
download | python-coveragepy-fd2284632777a235ac663b7b9912246b30bc538b.tar.gz |
Get rid of napoleon style docstrings, they don't format nicely.
Diffstat (limited to 'coverage/files.py')
-rw-r--r-- | coverage/files.py | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/coverage/files.py b/coverage/files.py index 762445f..bc9b0c9 100644 --- a/coverage/files.py +++ b/coverage/files.py @@ -295,10 +295,9 @@ class PathAliases(object): The separator style in the result is made to match that of the result in the alias. - Returns: - The mapped path. If a mapping has happened, this is a - canonical path. If no mapping has happened, it is the - original value of `path` unchanged. + Returns the mapped path. If a mapping has happened, this is a + canonical path. If no mapping has happened, it is the original value + of `path` unchanged. """ for regex, result, pattern_sep, result_sep in self.aliases: |