Skip to content

Commit

Permalink
Disable flake8 line length error
Browse files Browse the repository at this point in the history
  • Loading branch information
dhimmel committed Mar 24, 2017
1 parent 3d19af2 commit d5c32e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_obo_reading.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def test_parse_tag_line_with_tag_value_and_trailing_modifier():


def test_parse_tag_line_with_tag_value_trailing_modifier_and_comment():
line = 'xref: UMLS:C0022131 {source="ncithesaurus:Islet_of_Langerhans"} ! Islets of Langerhans\n'
line = 'xref: UMLS:C0022131 {source="ncithesaurus:Islet_of_Langerhans"} ! Islets of Langerhans\n' # noqa: E501
tag, value, trailing_modifier, comment = obo.read.parse_tag_line(line)
assert tag == 'xref'
assert value == 'UMLS:C0022131'
Expand Down

0 comments on commit d5c32e7

Please sign in to comment.