From ee7834b4556c5eafc4b1b71124f7f3f88f54e2da Mon Sep 17 00:00:00 2001 From: kirbylife Date: Fri, 29 Nov 2019 17:19:25 -0600 Subject: [PATCH] removed unnecesary code --- compare_json.py | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/compare_json.py b/compare_json.py index cf4b2b4..183ecc7 100644 --- a/compare_json.py +++ b/compare_json.py @@ -1,6 +1,3 @@ -#!/usr/bin/env python3 -# -*- coding: utf-8 -*- - import json from dir_to_json import get_json @@ -34,8 +31,8 @@ def compare_json(json1, json2): if __name__ == "__main__": try: - json1 = get_json("/home/kirbylife/Proyectos/munyal_test/original") - json2 = get_json("/home/kirbylife/Proyectos/munyal_test/copy") + json1 = get_json("/home/kirbylife/Munyal/test_1") + json2 = get_json("/home/kirbylife/Munyal/test_2") except Exception: print("error outside") json1, json2 = compare_json(json1, json2)