Skip to content

Commit

Permalink
fix linting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
adhil0 committed Mar 22, 2024
1 parent a28ffb0 commit c9e64e9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
5 changes: 4 additions & 1 deletion dashboard/src/t5gweb/fake_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,10 @@ def generate_fake_bugs(fake, case):
bugzilla_number = str(fake.random_number(6))

bug = {
"bugzillaLink": f"https://{fake.safe_domain_name()}/show_bug.cgi?id={bugzilla_number}",
"bugzillaLink": (
f"https://{fake.safe_domain_name()}"
f"/show_bug.cgi?id={bugzilla_number}"
),
"bugzillaNumber": bugzilla_number,
"caseNumber": case,
"linkedAt": fake.date_time_this_decade().isoformat() + "Z",
Expand Down
1 change: 0 additions & 1 deletion dashboard/src/t5gweb/t5gweb.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
import re
from copy import deepcopy
from datetime import date, datetime, timezone

import click
from flask.cli import with_appcontext

Expand Down

0 comments on commit c9e64e9

Please sign in to comment.