(self, iso_639_1, iso_639_2_t, iso_639_2_b, name_en, name_native)
| 108 | # und for Undetermined aka unknown language https://www.loc.gov/standards/iso639-2/faq.html#25 |
| 109 | |
| 110 | def __init__(self, iso_639_1, iso_639_2_t, iso_639_2_b, name_en, name_native): |
| 111 | self.iso_639_1 = iso_639_1 |
| 112 | self.iso_639_2_t = iso_639_2_t |
| 113 | self.iso_639_2_b = iso_639_2_b |
| 114 | self.name_en = name_en |
| 115 | self.name_native = name_native |
| 116 | |
| 117 | @staticmethod |
| 118 | def from_iso_639_1(code): |
nothing calls this directly
no outgoing calls
no test coverage detected