Created
March 18, 2016 17:41
-
-
Save msikma/070262678dc795d98601 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if self.is_type(ADJ_I): | |
stem_kana = self.conjugations['stem_kana'] | |
stem_kanji = self.conjugations['stem_kanji'] | |
conj = self.conjugations['conj'] | |
suffix = '' | |
next_type = None if next is None else next.get_type() | |
if next.is_type(ADJ_I): | |
suffix = 'くて' | |
else: | |
suffix = 'test' | |
return stem_kanji + suffix |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment