Skip to content
Snippets Groups Projects
Commit d0665e51 authored by hagrid67's avatar hagrid67
Browse files

changed max-line-length to 120 in tox.ini.

Also changed a line to be 86 chars long in rendertools.py
parent ff800a1b
No related branches found
No related tags found
No related merge requests found
...@@ -68,9 +68,7 @@ class RenderTool(object): ...@@ -68,9 +68,7 @@ class RenderTool(object):
tbTrans = rt.RETrans.get_transitions(oTrans, visit.iDir) tbTrans = rt.RETrans.get_transitions(oTrans, visit.iDir)
giTrans = np.where(tbTrans)[0] # RC list of transitions giTrans = np.where(tbTrans)[0] # RC list of transitions
gTransRCAg = rt.gTransRC[giTrans] gTransRCAg = rt.gTransRC[giTrans]
self.plotTrans( self.plotTrans(visit.rc, gTransRCAg, depth=str(visit.iDepth), color=color)
visit.rc, gTransRCAg,
depth=str(visit.iDepth), color=color)
def plotAgents(self): def plotAgents(self):
rt = self.__class__ rt = self.__class__
......
...@@ -6,6 +6,9 @@ python = ...@@ -6,6 +6,9 @@ python =
3.7: py37 3.7: py37
3.6: py36 3.6: py36
[flake8]
max-line-length = 120
[testenv:flake8] [testenv:flake8]
basepython = python basepython = python
deps = flake8 deps = flake8
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment