Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/tescmd/cli/key.py
Original file line number Diff line number Diff line change
Expand Up @@ -604,7 +604,8 @@ async def _cmd_enroll(
formatter.rich.info(" [cyan]tescmd charge status --wake[/cyan]")
formatter.rich.info("")
formatter.rich.info(
"[dim]Tip: The QR code must be scanned on your phone that has the Tesla app installed.[/dim]"
"[dim]Tip: The QR code must be scanned on your phone"
" that has the Tesla app installed.[/dim]"
)


Expand Down
4 changes: 2 additions & 2 deletions src/tescmd/triggers/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@

import uuid
from datetime import UTC, datetime
from enum import Enum
from enum import StrEnum
from typing import Any

from pydantic import BaseModel, Field, model_validator


class TriggerOperator(str, Enum):
class TriggerOperator(StrEnum):
"""Supported comparison operators for trigger conditions."""

LT = "lt"
Expand Down
Loading