remove os from plan router

This commit is contained in:
Khalim Conn-Kowlessar 2023-12-30 21:01:21 +00:00
parent ad9eec8924
commit 3343e27834
2 changed files with 0 additions and 4 deletions

View file

@ -37,9 +37,6 @@ class OrdnanceSuveyClient:
response = requests.get(url)
if response.status_code == 200:
data = response.json()
# Extract the UPRN from the data
# Note: This example assumes that the first result is the correct one, which might not always be the case.
results = data['results']
self.results = results
else:

View file

@ -3,7 +3,6 @@ from datetime import datetime
import numpy as np
import pandas as pd
from epc_api.client import EpcClient
from backend.OrdnanceSurvey import OrdnanceSuveyClient
from fastapi import APIRouter, Depends
from sqlalchemy.exc import IntegrityError, OperationalError
from sqlalchemy.orm import sessionmaker