8000 disable a lint message · rinlevan/firebase-admin-python@425399a · GitHub
[go: up one dir, main page]

Skip to content

Commit 425399a

Browse files
committed
disable a lint message
1 parent edce127 commit 425399a

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

firebase_admin/dynamic_links.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,10 @@ def __init__(self, app):
114114

115115
def _populated_request(self, url, options):
116116
days = options.duration_days
117+
#pylint: disable-msg=too-many-arguments
118+
#this is due to six.urllib_parse incompatibility
117119
url_quoted = urllib_parse.quote(url, "")
120+
#pylint: enable-msg=too-many-arguments
118121
return self._links_request.format(url_quoted, days)
119122

120123
def get_stats(self, url, options):

0 commit comments

Comments
 (0)
0