Skip to content

Commit

Permalink
[fix] Fixed failing QA check openwisp#467
Browse files Browse the repository at this point in the history
The QA check was failing earlier because the latest commit wasn't
following the conventional commit guidelines, this commit fixes it. Ran
both the openwisp-qa-format and openwisp-qa-check commands.

Fixes openwisp#467
  • Loading branch information
Shiva953 committed Feb 22, 2024
1 parent 3b95cac commit db05e03
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion openwisp_radius/api/serializers.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,9 @@ class RadiusPostAuthSerializer(serializers.ModelSerializer):
allow_blank=True,
style={'input_type': 'password'},
)
called_station_id = serializers.CharField(required=False, allow_blank=True, max_length=50)
called_station_id = serializers.CharField(
required=False, allow_blank=True, max_length=50
)
calling_station_id = serializers.CharField(required=False, allow_blank=True)

def validate(self, data):
Expand Down

0 comments on commit db05e03

Please sign in to comment.