Commit e16c3b46 authored by jlaura's avatar jlaura Committed by Jesse Mapel
Browse files

Update acn_overlaps (#338)

* Update acn_overlaps

* Update acn_submit
parent 1583e813
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -19,7 +19,7 @@ from plio.io.io_gdal import GeoDataset
#Load the config file
try:
    with open(os.environ['autocnet_config'], 'r') as f:
        config = yaml.load(f)
        config = yaml.safe_load(f)
except:
    print("The 'autocnet_config' environment variable is not set.")
    sys.exit(1)
+1 −1
Original line number Diff line number Diff line
@@ -16,7 +16,7 @@ from autocnet.graph.edge import NetworkEdge
#Load the config file
try:
    with open(os.environ['autocnet_config'], 'r') as f:
        config = yaml.load(f)
        config = yaml.safe_load(f)
except:
    print("The 'autocnet_config' environment variable is not set.")
    sys.exit()