From 2c9753eff2b64a060a0cdd8a0c26f3873c4ad033 Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Mon, 10 Aug 2015 00:09:02 +0200 Subject: [PATCH] * Whitespace --- spacy/syntax/arc_eager.pyx | 2 +- spacy/syntax/stateclass.pxd | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/spacy/syntax/arc_eager.pyx b/spacy/syntax/arc_eager.pyx index 441c3df22..265018920 100644 --- a/spacy/syntax/arc_eager.pyx +++ b/spacy/syntax/arc_eager.pyx @@ -109,7 +109,7 @@ cdef bint label_is_gold(const GoldParseC* gold, int head, int child, int label) cdef bint _is_gold_root(const GoldParseC* gold, int word) nogil: return gold.labels[word] == -1 or gold.heads[word] == word - + cdef class Shift: @staticmethod diff --git a/spacy/syntax/stateclass.pxd b/spacy/syntax/stateclass.pxd index 888b01c32..8a10f5a39 100644 --- a/spacy/syntax/stateclass.pxd +++ b/spacy/syntax/stateclass.pxd @@ -71,7 +71,6 @@ cdef class StateClass: return -1 return self._sent[i].head + i - cdef int E(self, int i) nogil cdef int R(self, int i, int idx) nogil