issues
search
datquocnguyen
/
RDRPOSTagger
A fast and accurate POS and morphological tagging toolkit (EACL 2014)
http://rdrpostagger.sourceforge.net
Other
140
stars
48
forks
source link
Follows PEP 8 Python code convention and format
#20
Open
bact
opened
5 years ago
bact
commented
5 years ago
Replace comparisons with None from
== None
to
is None
and from
!= None
to
is not None
Drop unnecessary comparisons when obvious, follows Python convention that if a value is not None/False/zero/empty, it is
True
in a boolean test
Drop
;
semicolons at the end of some statements
Formatted with black, remove trailing spaces
Use
with
context manager for open files
== None
tois None
and from!= None
tois not None
True
in a boolean test;
semicolons at the end of some statementswith
context manager for open files