Skip to content

Commit

Permalink
💄 Format code
Browse files Browse the repository at this point in the history
  • Loading branch information
fcurella committed Sep 4, 2024
1 parent 2dc067e commit 8edf07b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
5 changes: 2 additions & 3 deletions faker/providers/isbn/__init__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
from typing import List, Tuple
from typing import Dict, List, Tuple

from .. import BaseProvider
from .isbn import MAX_LENGTH, ISBN10, ISBN13
from typing import Dict, List, Tuple
from .isbn import ISBN10, ISBN13, MAX_LENGTH

localized = True

Expand Down
3 changes: 2 additions & 1 deletion faker/providers/isbn/es_ES/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
from .. import Provider as ISBNProvider


class Provider(ISBNProvider):
rules = {
"978": {
Expand Down Expand Up @@ -31,6 +32,6 @@ class Provider(ISBNProvider):
("8750000", "8999999", 5),
("9000000", "9899999", 0),
("9900000", "9999999", 6),
]
],
},
}

0 comments on commit 8edf07b

Please sign in to comment.