Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Jun 13, 2022
1 parent 7ba35b2 commit c5a44ff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion config/settings/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@
)

# Currency Formatter will output 2.000,00 Bs.
_FORMATTER.add_sign_definition("default", EEI, prefix=u"Ƶ ")
_FORMATTER.add_sign_definition("default", EEI, prefix="Ƶ ")

_FORMATTER.add_formatting_definition(
"es_BO",
Expand Down
2 changes: 1 addition & 1 deletion goosetools/industry/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def shiporders_contract_confirm(request, pk):

def random_with_n_digits(n):
range_start = 10 ** (n - 1)
range_end = (10 ** n) - 1
range_end = (10**n) - 1
return randint(range_start, range_end)


Expand Down

0 comments on commit c5a44ff

Please sign in to comment.