Skip to content
Snippets Groups Projects
Commit 6b2502d2 authored by Jeremy M Fee's avatar Jeremy M Fee
Browse files

Linting fixes

parent 444b4500
No related branches found
No related tags found
No related merge requests found
...@@ -362,7 +362,7 @@ def get_output_factory(args): ...@@ -362,7 +362,7 @@ def get_output_factory(args):
try: try:
# python 3 # python 3
output_stream = sys.stdout.buffer output_stream = sys.stdout.buffer
except: except AttributeError:
# python 2 # python 2
output_stream = sys.stdout output_stream = sys.stdout
elif args.output_url is not None: elif args.output_url is not None:
......
...@@ -36,6 +36,7 @@ def test_get_stream_gaps(): ...@@ -36,6 +36,7 @@ def test_get_stream_gaps():
# no gaps in Z channel # no gaps in Z channel
assert_equals(len(gaps['Z']), 0) assert_equals(len(gaps['Z']), 0)
def test_get_stream_gaps_channels(): def test_get_stream_gaps_channels():
"""TimeseriesUtility_test.test_get_stream_gaps_channels() """TimeseriesUtility_test.test_get_stream_gaps_channels()
...@@ -56,6 +57,7 @@ def test_get_stream_gaps_channels(): ...@@ -56,6 +57,7 @@ def test_get_stream_gaps_channels():
assert_equals('H' in gaps, False) assert_equals('H' in gaps, False)
assert_equals(len(gaps['Z']), 0) assert_equals(len(gaps['Z']), 0)
def test_get_trace_gaps(): def test_get_trace_gaps():
"""TimeseriesUtility_test.test_get_trace_gaps() """TimeseriesUtility_test.test_get_trace_gaps()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment