Skip to content

Commit d5eef0b

Browse files
🚨 Fix ruff format violations
1 parent 5336ae0 commit d5eef0b

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

asa_api_cli/ad_groups.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -813,7 +813,7 @@ def review_negatives(
813813
console.print(Rule("Overlapping Broad Keywords"))
814814
console.print()
815815
console.print(
816-
"[dim]These keywords exist as BROAD match in multiple ad groups " "(may cause competition):[/dim]"
816+
"[dim]These keywords exist as BROAD match in multiple ad groups (may cause competition):[/dim]"
817817
)
818818
console.print()
819819

asa_api_cli/auth.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ def test_auth(
103103

104104
if settings.private_key and not settings.private_key_path:
105105
print_warning(
106-
"ASA_PRIVATE_KEY env var is deprecated. " "Use ASA_PRIVATE_KEY_PATH to reference a key file instead."
106+
"ASA_PRIVATE_KEY env var is deprecated. Use ASA_PRIVATE_KEY_PATH to reference a key file instead."
107107
)
108108
error_console.print()
109109

@@ -190,7 +190,7 @@ def show_config(
190190
if settings.private_key and not settings.private_key_path:
191191
error_console.print()
192192
print_warning(
193-
"ASA_PRIVATE_KEY env var is deprecated. " "Use ASA_PRIVATE_KEY_PATH to reference a key file instead."
193+
"ASA_PRIVATE_KEY env var is deprecated. Use ASA_PRIVATE_KEY_PATH to reference a key file instead."
194194
)
195195

196196
except ValidationError as e:

asa_api_cli/translate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ async def translate_keywords(
219219
prompt = f"""Translate the following keywords from {source_name} to {target_name}.
220220
221221
Keywords to translate:
222-
{chr(10).join(f'- {kw}' for kw in keywords)}
222+
{chr(10).join(f"- {kw}" for kw in keywords)}
223223
224224
Provide translations for each keyword."""
225225

0 commit comments

Comments
 (0)