Skip to content

Commit

Permalink
make fix
Browse files Browse the repository at this point in the history
  • Loading branch information
owocki committed Jul 29, 2019
1 parent 452e1ed commit 9382a03
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions app/marketing/management/commands/export_graph_edges.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,11 @@
along with this program. If not,see <http://www.gnu.org/licenses/>.
'''
import re

from django.conf import settings
from django.core.management.base import BaseCommand
import re


def is_an_edge(handle, edges):
for edge in edges:
Expand Down Expand Up @@ -87,6 +89,3 @@ def handle(self, *args, **options):
handle2 = normalize_handle(handle2)
if handle1 and handle2:
print(f"graph.addEdge(user_{handle1}, user_{handle2}); drawEdge(user_{handle1}, user_{handle2}); ");



0 comments on commit 9382a03

Please sign in to comment.