Skip to content

Commit 7c02e25

Browse files
committed
add noqa for function name
1 parent a5fe55b commit 7c02e25

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

LeetCodeAlgorithms/3Sum.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
from typing import List
1919

2020

21-
def threeSum(nums: List[int]) -> List[List[int]]:
21+
def threeSum(nums: List[int]) -> List[List[int]]: # noqa
2222
""" Find all pairs which follow the rule.
2323
2424
Notes:

0 commit comments

Comments
 (0)