diff options
author | Ashley Whetter <ashley@awhetter.co.uk> | 2016-06-25 21:31:35 +0100 |
---|---|---|
committer | Ashley Whetter <ashley@awhetter.co.uk> | 2016-06-25 21:31:35 +0100 |
commit | 0d170658efbdf8da0128a45780df6ca9193d35b2 (patch) | |
tree | 0c824df09c7dae822c56331ad06dc6514ba9a0d4 /pylint/graph.py | |
parent | deaedd4309309d2e53cdef2362896dddda780a1f (diff) | |
download | pylint-git-0d170658efbdf8da0128a45780df6ca9193d35b2.tar.gz |
Fixed our docstring lint errors
Diffstat (limited to 'pylint/graph.py')
-rw-r--r-- | pylint/graph.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/pylint/graph.py b/pylint/graph.py index a46a345c8..05dd104a4 100644 --- a/pylint/graph.py +++ b/pylint/graph.py @@ -57,8 +57,9 @@ class DotBackend(object): def generate(self, outputfile=None, dotfile=None, mapfile=None): """Generates a graph file. - :param outputfile: filename and path [defaults to graphname.png] - :param dotfile: filename and path [defaults to graphname.dot] + :param str outputfile: filename and path [defaults to graphname.png] + :param str dotfile: filename and path [defaults to graphname.dot] + :param str mapfile: filename and path :rtype: str :return: a path to the generated file |