diff options
| author | Bobby <[email protected]> | 2022-09-10 20:56:23 -0400 |
|---|---|---|
| committer | Bobby <[email protected]> | 2022-09-10 20:56:23 -0400 |
| commit | 932a6c13872c405dce0952d8cb69665773eba7e6 (patch) | |
| tree | 64315cadd418bce33baf307fb82bfdd794ce7893 | |
| parent | abf8d97800626e059fc8ae828bcb8b176eec0f5f (diff) | |
| download | edify-932a6c13872c405dce0952d8cb69665773eba7e6.tar.xz edify-932a6c13872c405dce0952d8cb69665773eba7e6.zip | |
Fixed linting errors for date pattern
| -rw-r--r-- | src/edify/library/__init__.py | 3 | ||||
| -rw-r--r-- | tests/test_date.py | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/src/edify/library/__init__.py b/src/edify/library/__init__.py index 64c94e7..be1c093 100644 --- a/src/edify/library/__init__.py +++ b/src/edify/library/__init__.py @@ -1,9 +1,10 @@ # flake8: noqa # Import everything from the library. +from .date import date +from .date import iso_date from .ip import ipv4 from .ip import ipv6 from .mail import email from .mail import email_rfc_5322 from .phone import phone_number -from .date import date, iso_date diff --git a/tests/test_date.py b/tests/test_date.py index dd5dd22..555dfb0 100644 --- a/tests/test_date.py +++ b/tests/test_date.py @@ -1,4 +1,5 @@ -from edify.library import date, iso_date +from edify.library import date +from edify.library import iso_date def test_date(): |
