Skip to content

Instantly share code, notes, and snippets.

@msikma
Created March 18, 2016 17:41
Show Gist options
  • Save msikma/070262678dc795d98601 to your computer and use it in GitHub Desktop.
Save msikma/070262678dc795d98601 to your computer and use it in GitHub Desktop.
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