Skip to content

Commit

Permalink
executed command pre-commit on all files
Browse files Browse the repository at this point in the history
  • Loading branch information
federicofantini committed Aug 9, 2023
1 parent b638890 commit d17b44a
Show file tree
Hide file tree
Showing 12 changed files with 10 additions and 18 deletions.
15 changes: 10 additions & 5 deletions .flake8
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,13 @@ exclude =
certego_django_apps/migrations
example_project
ignore =
F821, # undefined name 'Rule'
W503, # line break before binary operator
E402, # module level import not at top of file
W291, # trailing whitespace nightmare
E203, # whitespace before ':'
# undefined name 'Rule'
F821,
# line break before binary operator
W503,
# module level import not at top of file
E402,
# trailing whitespace nightmare
W291,
# whitespace before ':'
E203,
1 change: 0 additions & 1 deletion certego_saas/apps/feedback/migrations/0001_initial.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@


class Migration(migrations.Migration):

initial = True

dependencies = [
Expand Down
1 change: 0 additions & 1 deletion certego_saas/apps/notifications/migrations/0001_initial.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@


class Migration(migrations.Migration):

initial = True

dependencies = [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@


class Migration(migrations.Migration):

dependencies = [
("certego_saas_notifications", "0001_initial"),
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@


class Migration(migrations.Migration):

dependencies = [
("certego_saas_notifications", "0002_alter_notification_appname"),
]
Expand Down
1 change: 0 additions & 1 deletion certego_saas/apps/organization/migrations/0001_initial.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@


class Migration(migrations.Migration):

initial = True

dependencies = [
Expand Down
1 change: 0 additions & 1 deletion certego_saas/apps/payments/migrations/0001_initial.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@


class Migration(migrations.Migration):

initial = True

dependencies = [
Expand Down
1 change: 0 additions & 1 deletion certego_saas/apps/user/migrations/0001_initial.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@


class Migration(migrations.Migration):

initial = True
replaces = [
("certego_saas", "0001_initial"),
Expand Down
1 change: 0 additions & 1 deletion certego_saas/ext/test_utilities/no_logs_test_case.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ def assertNoLogs(
with self.assertLogs(logger=logger, level=level) as new_log:
yield
except AssertionError as e:

if isinstance(e.args[0], str) and not e.args[0].startswith(
"no logs of level"
):
Expand Down
1 change: 0 additions & 1 deletion certego_saas/ext/upload/elastic.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,6 @@ def __repr__(self):
from django.db.models import fields as django_fields

class BIDocument(__BIDocumentInterface, Model):

index = django_fields.CharField(max_length=100)
creation_date = django_fields.DateTimeField(auto_now_add=True)
category = django_fields.CharField(max_length=100)
Expand Down
2 changes: 0 additions & 2 deletions certego_saas/ext/upload/slack.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,11 @@ def send_message(


if settings.DEBUG or certego_apps_settings.TESTING:

Slack = _Slack

else:

class Slack(_Slack):

token = settings.SLACK_TOKEN

client = WebClient(token=token)
Expand Down
2 changes: 0 additions & 2 deletions certego_saas/ext/upload/twitter.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,13 +53,11 @@ def post_tweet(


if settings.DEBUG or certego_apps_settings.TESTING:

Twitter = _Twitter

else:

class Twitter(_Twitter):

CHARACTER_LIMIT = twitter_lib.api.CHARACTER_LIMIT
client = twitter_lib.Api(
consumer_key=certego_apps_settings.TWITTER_CONSUMER_KEY,
Expand Down

0 comments on commit d17b44a

Please sign in to comment.