Skip to content

Instantly share code, notes, and snippets.

@DavidPiper94
Created September 7, 2019 09:12
Show Gist options
  • Save DavidPiper94/cab9ca980eb0b0fae7995df1d47abf86 to your computer and use it in GitHub Desktop.
Save DavidPiper94/cab9ca980eb0b0fae7995df1d47abf86 to your computer and use it in GitHub Desktop.
Example code for article about adding a new converter to Logen - Imports of GroupingConverter
# 1
from ..converter.ConverterInterface import ConverterInterface as Base
# 2
from ..model.IntermediateEntry import IntermediateEntry
from ..model.IntermediateLanguage import IntermediateLanguage
from ..model.IntermediateLocalization import IntermediateLocalization
from ..model.LocalizationFile import LocalizationFile
#3
from typing import List, Optional, Tuple, Dict
@DavidPiper94
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment