Explorerhat Pro Analog readings showing the same

I have two Sharp Analog distance sensors plugged into Analog 1 and 4 on my ExplorerHat Pro. Using a simple bit of code to test, I always get the same reading from both sensors:

import explorerhat
from time import sleep

while True:
one = explorerhat.analog.one.read()
two = explorerhat.analog.two.read()
print(one, two)
time.sleep(0.1)

The values are around 3 and always show the same