Skip to content

Commit 7d6ea6a

Browse files
committed
fix lint
1 parent b563895 commit 7d6ea6a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

firebase_admin/_messaging_encoder.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -365,7 +365,7 @@ def encode_android_notification(cls, notification):
365365
'AndroidNotification.vibrate_timings_millis', msec)
366366
vibrate_timing_strings.append(formated_string)
367367
result['vibrate_timings'] = vibrate_timing_strings
368-
368+
369369
proxy = result.get('proxy')
370370
if proxy:
371371
if proxy not in ('allow', 'deny', 'if_priority_lowered'):

tests/test_messaging.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -534,7 +534,7 @@ def test_invalid_visibility(self, visibility):
534534
else:
535535
expected = 'AndroidNotification.visibility must be a non-empty string.'
536536
assert str(excinfo.value) == expected
537-
537+
538538
@pytest.mark.parametrize('proxy', NON_STRING_ARGS + ['foo'])
539539
def test_invalid_proxy(self, proxy):
540540
notification = messaging.AndroidNotification(proxy=proxy)

0 commit comments

Comments
 (0)