Skip to content

Commit

Permalink
pylint beauty and changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
patroqueeet committed Aug 28, 2024
1 parent b2ddb8d commit 1fdb031
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## [4.2.1] - 2024-08-28

### Changed

- stable datetime str conversion

## [4.2] - 2024-08-26

### Added
Expand Down
3 changes: 1 addition & 2 deletions django_walletpass/models.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import datetime
import os
import re
import uuid
Expand All @@ -8,6 +7,7 @@
import secrets
import zipfile
from glob import glob
from dateutil.parser import parse as datetime_parse
from django.core.exceptions import ValidationError
from django.utils import timezone
from django.utils.module_loading import import_string
Expand All @@ -17,7 +17,6 @@
from django_walletpass.storage import WalletPassStorage
from django_walletpass.files import WalletpassContentFile
from django_walletpass.settings import dwpconfig as WALLETPASS_CONF
from dateutil.parser import parse as datetime_parse


class PassBuilder:
Expand Down

0 comments on commit 1fdb031

Please sign in to comment.