diff --git a/vta/examples/resnet18/pynq/imagenet_predict.py b/vta/examples/resnet18/pynq/imagenet_predict.py
index 8ec0d5a2761e28903397daee2dc1d3009a6c1a47..e5b4a1131461c10f1b345e789875dda3f0fbd71a 100644
--- a/vta/examples/resnet18/pynq/imagenet_predict.py
+++ b/vta/examples/resnet18/pynq/imagenet_predict.py
@@ -139,11 +139,10 @@ else:
     port = os.environ.get("VTA_PYNQ_RPC_PORT", "9091")
     port = int(port)
     remote = rpc.connect(host, port)
-
-# Program FPGA, and build runtime if necessary
-# Overwrite bitstream with a path to your own if you built it yourself
-vta.reconfig_runtime(remote)
-vta.program_fpga(remote, bitstream=None)
+    # Program FPGA, and build runtime if necessary
+    # Overwrite bitstream with a path to your own if you built it yourself
+    vta.reconfig_runtime(remote)
+    vta.program_fpga(remote, bitstream=None)
 
 remote.upload(temp.relpath("graphlib.o"))
 lib = remote.load_module("graphlib.o")