Skip to content

Commit

Permalink
Fix spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
henryruhs committed Jan 11, 2024
1 parent c1e7b79 commit 00e6732
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions chroma_feedback/typing.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,37 +74,37 @@


class Producer(TypedDict):
name: ProducerName
slug: str
url: Optional[str]
status: Status
name : ProducerName
slug : str
url : Optional[str]
status : Status


class Consumer(TypedDict):
name: ConsumerName
type: ConsumerType
description: str
status: Status
name : ConsumerName
type : ConsumerType
description : str
status : Status


class ProducerReport(TypedDict):
name: ProducerName
symbol: str
name : ProducerName
symbol : str
message : str
url : Optional[str]
status : Status


class ConsumerReport(TypedDict):
name: ConsumerName
symbol: str
name : ConsumerName
symbol : str
message : str
status : Status


class Color(TypedDict):
rgb: List[int]
hue: int
saturation: List[int]
brightness: List[int]
kelvin: int
rgb : List[int]
hue : int
saturation : List[int]
brightness : List[int]
kelvin : int

0 comments on commit 00e6732

Please sign in to comment.