Skip to content

Commit

Permalink
Merge pull request #6 from nkowicka/master
Browse files Browse the repository at this point in the history
LRpath method interface
  • Loading branch information
sienkie authored Jun 8, 2018
2 parents a0a083f + f38d668 commit ab69e7c
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 0 deletions.
25 changes: 25 additions & 0 deletions methods/LRpath/LRpath.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
from methods.method import Method, MethodResult
from models import Experiment

class LRpathResult(MethodResult):
columns = []
description = """ """


class LRpath(Method):
"""
method TODO
"""

help = __doc__

name = 'LRpath'

legal_disclaimer = """ """


def __init__(self):
pass

def run(self, experiment: Experiment) -> LRpathResult:
return LRpathResult([])
3 changes: 3 additions & 0 deletions methods/LRpath/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from .LRpath import LRpath

__all__ = ["LRpath"]
1 change: 1 addition & 0 deletions methods/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
from .impact_analysis import *
from .method import Method
from .method import MethodResult
from .LRpath import *

0 comments on commit ab69e7c

Please sign in to comment.