Skip to content

Commit 6e35bc6

Browse files
committed
Fixed paths.
1 parent 2ecb4e1 commit 6e35bc6

7 files changed

Lines changed: 14 additions & 14 deletions

File tree

udapi/block/msf/slavic/conditional.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
features as Phrase* attributes in MISC of their head word.
55
"""
66

7-
import udapi.block.mwe.msfphrase
7+
import udapi.block.msf.msfphrase
88

9-
class Conditional(udapi.block.mwe.msfphrase.MsfPhrase):
9+
class Conditional(udapi.block.msf.msfphrase.MsfPhrase):
1010

1111
def process_node(self, node):
1212
if (node.feats['VerbForm'] == 'Part' or node.feats['VerbForm'] == 'PartRes') or node.feats['VerbForm'] == 'Fin':

udapi/block/msf/slavic/converb.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
features as Phrase* attributes in MISC of their head word.
55
"""
66

7-
import udapi.block.mwe.msfphrase
7+
import udapi.block.msf.msfphrase
88

9-
class Converb(udapi.block.mwe.msfphrase.MsfPhrase):
9+
class Converb(udapi.block.msf.msfphrase.MsfPhrase):
1010

1111
def process_node(self, node):
1212
# condition node.upos == 'VERB' to prevent copulas from entering this branch

udapi/block/msf/slavic/future.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
features as Phrase* attributes in MISC of their head word.
55
"""
66

7-
import udapi.block.mwe.msfphrase
7+
import udapi.block.msf.msfphrase
88

9-
class Future(udapi.block.mwe.msfphrase.MsfPhrase):
9+
class Future(udapi.block.msf.msfphrase.MsfPhrase):
1010

1111
def process_node(self, node):
1212
# future tense for Serbian and Croatian

udapi/block/msf/slavic/imperative.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
features as Phrase* attributes in MISC of their head word.
55
"""
66

7-
import udapi.block.mwe.msfphrase
7+
import udapi.block.msf.msfphrase
88

9-
class Imperative(udapi.block.mwe.msfphrase.MsfPhrase):
9+
class Imperative(udapi.block.msf.msfphrase.MsfPhrase):
1010

1111
def process_node(self, node):
1212
# the condition node.upos == 'VERB' ensures that copulas do not enter this branch

udapi/block/msf/slavic/infinitive.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
features as Phrase* attributes in MISC of their head word.
55
"""
66

7-
import udapi.block.mwe.msfphrase
7+
import udapi.block.msf.msfphrase
88

9-
class Infinitive(udapi.block.mwe.msfphrase.MsfPhrase):
9+
class Infinitive(udapi.block.msf.msfphrase.MsfPhrase):
1010

1111
def process_node(self,node):
1212
if node.feats['VerbForm'] == 'Inf' and node.upos == 'VERB':

udapi/block/msf/slavic/past.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
features as Phrase* attributes in MISC of their head word.
55
"""
66

7-
import udapi.block.mwe.msfphrase
7+
import udapi.block.msf.msfphrase
88

9-
class Past(udapi.block.mwe.msfphrase.MsfPhrase):
9+
class Past(udapi.block.msf.msfphrase.MsfPhrase):
1010

1111
def get_person_for_langs_with_simple_past(self, node, person):
1212
"""

udapi/block/msf/slavic/present.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
features as Phrase* attributes in MISC of their head word.
55
"""
66

7-
import udapi.block.mwe.msfphrase
7+
import udapi.block.msf.msfphrase
88

9-
class Present(udapi.block.mwe.msfphrase.MsfPhrase):
9+
class Present(udapi.block.msf.msfphrase.MsfPhrase):
1010

1111
def process_node(self,node):
1212
# the condition VerbForm == 'Fin' ensures that there are no transgressives between the found verbs

0 commit comments

Comments
 (0)