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 Feb 7, 2023
1 parent 4dcad51 commit 9e9ff29
Show file tree
Hide file tree
Showing 22 changed files with 2 additions and 22 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
1 change: 0 additions & 1 deletion goosetools/contracts/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@ def change_status(self, new_status):
self.status = new_status

def isk_display(self):

# pylint: disable=no-member
isk_amount = self.isk.amount
if isk_amount == 0:
Expand Down
1 change: 0 additions & 1 deletion goosetools/discord_bot/migrations/0001_initial.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@


class Migration(migrations.Migration):

initial = True

dependencies = []
Expand Down
1 change: 0 additions & 1 deletion goosetools/global_items/management/commands/item_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,6 @@ def add_arguments(self, parser):
parser.add_argument("--clear_tenant", action="store_true")

def handle(self, *args, **options):

if options["export_tenant"]:
export_tenant_items_to_global_files()

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
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@


class Migration(migrations.Migration):

dependencies = [
("venmo", "0010_auto_20210516_1134"),
("ownership", "0005_lootgroup_locked_participation"),
Expand Down
1 change: 0 additions & 1 deletion goosetools/ownership/migrations/0007_auto_20210516_1217.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@


class Migration(migrations.Migration):

dependencies = [
("ownership", "0006_transferlog_new_transfer_method"),
]
Expand Down
1 change: 0 additions & 1 deletion goosetools/pricing/migrations/0006_auto_20210607_0724.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@


class Migration(migrations.Migration):

dependencies = [
("pricing", "0005_auto_20210524_0941"),
]
Expand Down
1 change: 0 additions & 1 deletion goosetools/pricing/migrations/0008_auto_20210715_1917.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@


class Migration(migrations.Migration):

dependencies = [
("users", "0016_auto_20210508_1403"),
("pricing", "0007_pricelist_deletable"),
Expand Down
1 change: 0 additions & 1 deletion goosetools/pricing/migrations/0009_auto_20210718_1033.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@


class Migration(migrations.Migration):

dependencies = [
("users", "0016_auto_20210508_1403"),
("pricing", "0008_auto_20210715_1917"),
Expand Down
1 change: 0 additions & 1 deletion goosetools/pricing/migrations/0011_auto_20210807_1259.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@


class Migration(migrations.Migration):

dependencies = [
("pricing", "0010_auto_20210724_0834"),
]
Expand Down
1 change: 0 additions & 1 deletion goosetools/pricing/migrations/0012_auto_20210807_1301.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@


class Migration(migrations.Migration):

dependencies = [
("users", "0016_auto_20210508_1403"),
("pricing", "0011_auto_20210807_1259"),
Expand Down
1 change: 0 additions & 1 deletion goosetools/pricing/migrations/0013_auto_20210807_1303.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@


class Migration(migrations.Migration):

dependencies = [
("pricing", "0012_auto_20210807_1301"),
]
Expand Down
1 change: 0 additions & 1 deletion goosetools/pricing/migrations/0014_auto_20210808_1758.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ def populate_latest(apps, schema_editor):


class Migration(migrations.Migration):

dependencies = [
("items", "0011_auto_20210503_1822"),
("venmo", "0012_auto_20210607_0724"),
Expand Down
1 change: 0 additions & 1 deletion goosetools/pricing/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@


def pricing_data_dashboard(request):

from_date = request.GET.get("from_date", None)
to_date = request.GET.get("to_date", None)
pricelist_id = request.GET.get("pricelist_id", None)
Expand Down
1 change: 0 additions & 1 deletion goosetools/venmo/migrations/0006_transfermethod.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@


class Migration(migrations.Migration):

dependencies = [
("discord_bot", "0001_initial"),
("users", "0016_auto_20210508_1403"),
Expand Down
1 change: 0 additions & 1 deletion goosetools/venmo/migrations/0007_auto_20210515_1526.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@


class Migration(migrations.Migration):

dependencies = [
("venmo", "0006_transfermethod"),
]
Expand Down
1 change: 0 additions & 1 deletion goosetools/venmo/migrations/0008_auto_20210515_1553.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@


class Migration(migrations.Migration):

dependencies = [
("users", "0016_auto_20210508_1403"),
("venmo", "0007_auto_20210515_1526"),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@


class Migration(migrations.Migration):

dependencies = [
("venmo", "0008_auto_20210515_1553"),
]
Expand Down
1 change: 0 additions & 1 deletion goosetools/venmo/migrations/0010_auto_20210516_1134.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@


class Migration(migrations.Migration):

dependencies = [
("venmo", "0009_transfermethod_generated_command_help_text"),
]
Expand Down
1 change: 0 additions & 1 deletion goosetools/venmo/migrations/0011_auto_20210516_1217.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@


class Migration(migrations.Migration):

dependencies = [
("venmo", "0010_auto_20210516_1134"),
]
Expand Down
1 change: 0 additions & 1 deletion goosetools/venmo/migrations/0012_auto_20210607_0724.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@


class Migration(migrations.Migration):

dependencies = [
("venmo", "0011_auto_20210516_1217"),
]
Expand Down

0 comments on commit 9e9ff29

Please sign in to comment.