Skip to content

Commit 4825e7f

Browse files
authored
fix(config): change str quotes to fix formatting error
- update "" to '' inside fstring on date fields in json config
1 parent 7851f9f commit 4825e7f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/config/integration_config.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ def generate_json_config():
66
return {
77
"data": {
88
"date": {
9-
"created_at": f"{datetime.now().strftime("%-I:%M%p. %A, %B %-d, %Y.")}",
10-
"updated_at": f"{datetime.now().strftime("%-I:%M%p. %A, %B %-d, %Y.")}"
9+
"created_at": f"{datetime.now().strftime('%-I:%M%p. %A, %B %-d, %Y.')}",
10+
"updated_at": f"{datetime.now().strftime('%-I:%M%p. %A, %B %-d, %Y.')}"
1111
},
1212
"descriptions": {
1313
"app_name": "GitHub Commit Quality Monitor",
@@ -59,4 +59,4 @@ def generate_json_config():
5959
],
6060
"target_url": settings.target_url
6161
}
62-
}
62+
}

0 commit comments

Comments
 (0)