Skip to content

Commit

Permalink
Update __init__.py
Browse files Browse the repository at this point in the history
  • Loading branch information
YannBouyeron authored Aug 18, 2021
1 parent 1216d1a commit b50d21e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions koala/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ def lin(self, x, y, show=True):

pass

return attrdict.AttrDict({"a":a, "b":b, "r":r, "equation":f, "graph":plt})
return attrdict.AttrDict({"a":a, "b":b, "r":r, "equation":f})



Expand Down Expand Up @@ -177,7 +177,7 @@ def exp(self, x, y, show=True):

pass

return attrdict.AttrDict({"a":a, "b":b, "r":r, "equation":f, "graph":plt})
return attrdict.AttrDict({"a":a, "b":b, "r":r, "equation":f})

except:

Expand Down Expand Up @@ -234,7 +234,7 @@ def pwr(self, x, y ,show=True):
pass


return attrdict.AttrDict({"a":a, "b":b, "r":r, "equation":f, "graph":plt})
return attrdict.AttrDict({"a":a, "b":b, "r":r, "equation":f})

except:

Expand Down Expand Up @@ -328,4 +328,4 @@ def reg(self, X, Y, show=True):
exp.graph = g3
pwr.graph = g4

return attrdict.AttrDict({"plot":g1, "lin":lin, "exp":exp, "pwr":pwr, "plt":plt})
return attrdict.AttrDict({"plot":g1, "lin":lin, "exp":exp, "pwr":pwr})

0 comments on commit b50d21e

Please sign in to comment.