Skip to content

Commit 9b16b20

Browse files
MNT: fix pylint
1 parent 0f0be1c commit 9b16b20

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

rocketpy/environment/environment.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
fetch_gfs_file_return_dataset,
1717
fetch_hiresw_file_return_dataset,
1818
fetch_nam_file_return_dataset,
19-
fetch_noaaruc_sounding,
2019
fetch_open_elevation,
2120
fetch_rap_file_return_dataset,
2221
fetch_wyoming_sounding,
@@ -1680,6 +1679,7 @@ def process_noaaruc_sounding(self, file): # pylint: disable=too-many-statements
16801679
"This method is deprecated and will be fully deleted in version 1.8.0.",
16811680
DeprecationWarning,
16821681
)
1682+
return file
16831683

16841684
def process_forecast_reanalysis(
16851685
self, file, dictionary

rocketpy/environment/fetchers.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -353,6 +353,7 @@ def fetch_noaaruc_sounding(file):
353353
"This method will be removed in version 1.8.0.",
354354
DeprecationWarning,
355355
)
356+
return file
356357

357358

358359
@exponential_backoff(max_attempts=5, base_delay=2, max_delay=60)

0 commit comments

Comments
 (0)