Skip to content

Commit 07200af

Browse files
committed
Revert " adding try-except format to read_rfc_flows"
This reverts commit 8477ad8.
1 parent aea3120 commit 07200af

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

src/troute-rnr/main.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -80,11 +80,7 @@ def run(
8080
except httpx.HTTPStatusError:
8181
# HTTPStatusError: There was no forecast/record within NWPS for the site given
8282
continue
83-
try:
84-
inputs = read.read_rfc_flows(site_data, settings)
85-
except ValueError:
86-
print(f"Site input data is not supported")
87-
continue
83+
inputs = read.read_rfc_flows(site_data, settings)
8884
if inputs is not None:
8985
try:
9086
rnr.get_rnr_segment(

0 commit comments

Comments
 (0)