Skip to content

Commit 1d9d933

Browse files
committed
Fix lint
1 parent bc7fcfc commit 1d9d933

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

firebase_admin/_auth_utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -331,10 +331,10 @@ def __init__(self, message, cause, http_response):
331331
class InvalidHostingLinkDomainError(exceptions.InvalidArgumentError):
332332
"""The provided hosting link domain is not configured in Firebase Hosting
333333
or is not owned by the current project."""
334-
334+
335335
default_message = ('The provided hosting link domain is not configured in Firebase '
336336
'Hosting or is not owned by the current project.')
337-
337+
338338
def __init__(self, message, cause, http_response):
339339
exceptions.InvalidArgumentError.__init__(self, message, cause, http_response)
340340

firebase_admin/_user_mgt.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -494,7 +494,10 @@ def __init__(self, url, handle_code_in_app=None, dynamic_link_domain=None, ios_b
494494
android_package_name=None, android_install_app=None, android_minimum_version=None,
495495
link_domain=None):
496496
if dynamic_link_domain is not None:
497-
warnings.warn('dynamic_link_domain is deprecated, use link_domain instead', DeprecationWarning)
497+
warnings.warn(
498+
'dynamic_link_domain is deprecated, use link_domain instead',
499+
DeprecationWarning
500+
)
498501
self.url = url
499502
self.handle_code_in_app = handle_code_in_app
500503
self.dynamic_link_domain = dynamic_link_domain

0 commit comments

Comments
 (0)