WeixuanZ / flood-warning-system

Inconsistent return statements PYL-R1710
Style
Minor
1 occurrence in this check
Either all return statements in a function should return an expression, or none of them should.
 28np.random.seed(6)  # for reproducibility
 29
 30
 31def fetch_levels(station_name, dt, return_date=False): 32    """
 33    Function that returns measurements and dates of a specified station since a specified number of days ago.
 34