mirror of
https://github.com/biopython/biopython.git
synced 2025-11-11 22:44:31 +08:00
Changed a typo in comment
This commit is contained in:
@ -201,7 +201,7 @@ class InsdcScanner(object):
|
||||
while line[:self.FEATURE_QUALIFIER_INDENT] == self.FEATURE_QUALIFIER_SPACER \
|
||||
or line.rstrip() == "": # cope with blank lines in the midst of a feature
|
||||
#Use strip to remove any harmless trailing white space AND and leading
|
||||
#white space (e.g. out of spec files with too much intentation)
|
||||
#white space (e.g. out of spec files with too much indentation)
|
||||
feature_lines.append(line[self.FEATURE_QUALIFIER_INDENT:].strip())
|
||||
line = self.handle.readline()
|
||||
features.append(self.parse_feature(feature_key, feature_lines))
|
||||
|
||||
Reference in New Issue
Block a user