Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

📝 fix usage of MAC address #72

Merged
merged 1 commit into from
Jul 3, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ nav:
- Payment Card: 'payment_cards.md'
- Phone Number: 'phone_numbers.md'
- ABA Routing Number: 'routing_number.md'
- Mac Address: 'mac_address.md'
- MAC address: 'mac_address.md'

markdown_extensions:
- tables
Expand Down
4 changes: 2 additions & 2 deletions pydantic_extra_types/mac_address.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
Mac Address Parsing and Validation
MAC address Parsing and Validation

This code provides functionality to parse and validate Mac Addresses in different formats, such as IEEE 802 MAC-48,
This code provides functionality to parse and validate MAC addresses in different formats, such as IEEE 802 MAC-48,
EUI-48, EUI-64, or a 20-octet format. It includes a `MacAddress` class that represents a Mac Address and provides
methods for conversion, validation, and serialization. The code also includes a `validate_mac_address` function
that takes a byte value representing a Mac Address and returns the parsed Mac Address as a string.
Expand Down