KOSASIH / HealthGuard-Refugee-Initiative

Inconsistent return statements PYL-R1710
Style
Minor
5 months ago5 months old
Either all return statements in a function should return an expression, or none of them should.
 96    return anonymized_data
 97
 98
 99def store_encrypted_data(data):100    """
101    Store the given encrypted data.
102