Skip to content

Commit

Permalink
Fixed authors' email addresses for contributors.md (#913)
Browse files Browse the repository at this point in the history
* Fixed authors' email addresses for contributors.md and contributors.py may be run from a Unix or Windows OS.

* Maybe this will fix coverage decrease.

* Removed a useless import.

* Update orthophonology.py

* Rm encoding on file open

We don't support windows, so this isn't necessary for us
  • Loading branch information
clemsciences authored and kylepjohnson committed Jun 1, 2019
1 parent f173fdc commit 77192ba
Show file tree
Hide file tree
Showing 30 changed files with 773 additions and 752 deletions.
2 changes: 1 addition & 1 deletion cltk/corpus/old_norse/syllabifier.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Sonority hierarchy for Old Norse
"""

__author__ = ["Clément Besnier <clemsicences@aol.com>", ]
__author__ = ["Clément Besnier <clemsciences@aol.com>", ]
__license__ = "MIT License"

# Used according to sonority principle
Expand Down
2 changes: 1 addition & 1 deletion cltk/corpus/punjabi/alphabet.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
There are two scripts used in Punjabi: Gurmukhi (having its origins in the Brahmi) and Shahmukhi (which a Perso-Arabic script).
"""

__author__ = ['Nimit Bhardwaj <nimitbhardwaj@gmail.com>', 'Talha Javed Mukhtar <tjaved.bscs15seecs@seecs.edu.pk']
__author__ = ['Nimit Bhardwaj <nimitbhardwaj@gmail.com>', 'Talha Javed Mukhtar <tjaved.bscs15seecs@seecs.edu.pk>']
__license__ = 'MIT License. See LICENSE.'


Expand Down
2 changes: 1 addition & 1 deletion cltk/phonology/gothic/transcription.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@

from cltk.phonology.utils import *

__author__ = ["Clément Besnier <clemsciences@gmail.com>"]
__author__ = ["Clément Besnier <clemsciences@aol.com>", ]

a = Vowel(Height.open, Backness.front, False, Length.short, "a")
long_a = a.lengthen()
Expand Down
2 changes: 1 addition & 1 deletion cltk/phonology/middle_english/transcription.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__author__ = ['Chatziargyriou Eleftheria <ele.hatzy@gmail.com>']
__author__ = ['Eleftheria Chatziargyriou <ele.hatzy@gmail.com>']
__license__ = 'MIT License'

import re
Expand Down
2 changes: 1 addition & 1 deletion cltk/phonology/old_norse/transcription.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from cltk.corpus.old_norse.syllabifier import BACK_TO_FRONT_VOWELS


__author__ = ["Clément Besnier <clemsciences@gmail.com>", ]
__author__ = ["Clément Besnier <clemsciences@aol.com>", ]


class OldNorsePhonology(Vowel):
Expand Down
2 changes: 1 addition & 1 deletion cltk/phonology/old_swedish/transcription.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

from cltk.phonology.utils import *

__author__ = ["Clément Besnier <clemsciences@gmail.com>"]
__author__ = ["Clément Besnier <clemsciences@aol.com>"]

a = Vowel(Height.open, Backness.front, False, Length.short, "a")
ee = Vowel(Height.open_mid, Backness.front, False, Length.short, "ɛ")
Expand Down
Loading

0 comments on commit 77192ba

Please sign in to comment.