Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit cd9b494c authored by stepshal's avatar stepshal
Browse files

Fix quantity of blank lines after code object.

parent 678b87f9
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line

categories = ['general'] # optional


def request(query, params):
    '''pre-request callback
    params<dict>:
+1 −0
Original line number Diff line number Diff line
@@ -8,6 +8,7 @@ paging = True


class FilecropResultParser(HTMLParser):

    def __init__(self):
        HTMLParser.__init__(self)
        self.__start_processing = False
+2 −0
Original line number Diff line number Diff line
@@ -166,6 +166,7 @@ class SwitchableSetting(Setting):


class EnginesSetting(SwitchableSetting):

    def _post_init(self):
        super(EnginesSetting, self)._post_init()
        transformed_choices = []
@@ -191,6 +192,7 @@ class EnginesSetting(SwitchableSetting):


class PluginsSetting(SwitchableSetting):

    def _post_init(self):
        super(PluginsSetting, self)._post_init()
        transformed_choices = []
+1 −0
Original line number Diff line number Diff line
@@ -91,6 +91,7 @@ def result_score(result):

class ResultContainer(object):
    """docstring for ResultContainer"""

    def __init__(self):
        super(ResultContainer, self).__init__()
        self.results = defaultdict(list)
+1 −0
Original line number Diff line number Diff line
@@ -74,6 +74,7 @@ def highlight_content(content, query):


class HTMLTextExtractor(HTMLParser):

    def __init__(self):
        HTMLParser.__init__(self)
        self.result = []
Loading