coverage fix

This commit is contained in:
Vinay Karanam 2016-07-03 04:31:19 +05:30
parent c58ae08fed
commit 81bd74d9c3

View file

@ -12,12 +12,6 @@ class Requirement(object):
@property
def name(self):
if self.value is None:
return
if self.value == b'\n':
return
if self.value.startswith(b'-e '):
return self.value.lower().partition(b'=')[-1]