Removed a unnecessary property.

This commit is contained in:
Holger Rapp 2014-02-15 23:56:39 +01:00
parent 3c0cf360a2
commit b0cec2edbd

View File

@ -35,15 +35,11 @@ class SnippetDictionary(object):
def get_matching_snippets(self, trigger, potentially): def get_matching_snippets(self, trigger, potentially):
"""Returns all snippets matching the given trigger. If 'potentially' is """Returns all snippets matching the given trigger. If 'potentially' is
true, returns all that could_match().""" true, returns all that could_match()."""
all_snippets = self._added + self._snippets
if not potentially: if not potentially:
return [s for s in self.snippets if s.matches(trigger)] return [s for s in all_snippets if s.matches(trigger)]
else: else:
return [s for s in self.snippets if s.could_match(trigger)] return [s for s in all_snippets if s.could_match(trigger)]
@property
def snippets(self):
"""Returns all snippets in this dictionary."""
return self._added + self._snippets
def clear_snippets(self, triggers=None): def clear_snippets(self, triggers=None):
"""Remove all snippets that match each trigger in 'triggers'. When """Remove all snippets that match each trigger in 'triggers'. When