Skip to content
Snippets Groups Projects
Commit 0d552af7 authored by Robert Latta's avatar Robert Latta
Browse files

Removed 'no cover' from get methods

parent e696cd65
Branches
Tags
No related merge requests found
......@@ -244,14 +244,14 @@ def get_circuits(db):
return r
def get_circuit_hierarchy(db): # pragma: no cover
def get_circuit_hierarchy(db):
with cursor(db) as crs:
crs.execute(circuit_hierarchy_query)
r = _convert_to_dict(crs)
return r
def get_equipment_location_data(db): # pragma: no cover
def get_equipment_location_data(db):
with cursor(db) as crs:
crs.execute(equipment_location_query)
r = _convert_to_dict(crs)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment