minor: Remove obsolete lint check.

Some code that we had a lint exception for got cleaned up in a
recent commit.
This commit is contained in:
Steve Howell
2017-09-20 13:05:04 -07:00
parent 9110ff935e
commit 6ce68dfc3d

View File

@@ -290,8 +290,6 @@ def build_custom_checkers(by_lang):
{'pattern': 'get_stream[(]',
'include_only': set(["zerver/views/", "zerver/lib/actions.py"]),
'exclude_line': set([
# This is a check for whether a stream rename is invalid because it already exists
('zerver/lib/actions.py', 'get_stream(new_name, stream.realm)'),
# This one in check_message is kinda terrible, since it's
# how most instances are written, but better to exclude something than nothing
('zerver/lib/actions.py', 'stream = get_stream(stream_name, realm)'),