We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 52fa71c commit 700968cCopy full SHA for 700968c
code/main.py
@@ -29,3 +29,7 @@
29
30
p = Pipe(token, daysago)
31
p.run_pipe()
32
+
33
+ Group().plot_person()
34
+ Group().plot_session()
35
code/utils/pipe.py
@@ -1,7 +1,6 @@
1
2
from utils.mnt import create_symlinks
3
from utils.save import Save
4
-from utils.group import Group
5
from core.gg import GG
6
import sys
7
@@ -28,8 +27,6 @@ def run_pipe(self):
28
27
file.write(',\n'.join(f' "{key}": "{value}"' for key, value in matched.items()))
GG(matched=matched, intdir=self.INT_DIR, obsdir=self.OBS_DIR).run_gg()
- Group().plot_person()
- Group().plot_session()
return None
0 commit comments