Skip to content

Commit 65e6ced

Browse files
author
Thomas Basche
committed
Linting
1 parent 53c431d commit 65e6ced

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

reposit/data/api.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def __str__(self):
3030
"""
3131
return '{} {}'.format(self.url, self.schema)
3232

33-
def __init__(self, path, controller, schema, **kwargs):
33+
def __init__(self, path, controller, schema):
3434
"""
3535
:param path: the url endpoint (e.g. /v2/deployments etc. etc.
3636
:param controller: a Controller instance
@@ -49,8 +49,6 @@ def __init__(self, path, controller, schema, **kwargs):
4949
}
5050
This is because some of the API responses vary in structure, so
5151
we can define them on the fly easily :)
52-
53-
:param kwargs: additional arguments when requesting data
5452
"""
5553
if path.startswith('/'):
5654
self.url = '{}{}'.format(BASE_URL, path)

0 commit comments

Comments
 (0)