Skip to content

Commit

Permalink
Update vendors
Browse files Browse the repository at this point in the history
  • Loading branch information
Santobert committed Oct 19, 2020
1 parent ba0cfb2 commit 135cb01
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
3 changes: 2 additions & 1 deletion pybotvac/neato.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import os
from dataclasses import dataclass
from typing import Union


@dataclass(init=False, frozen=True)
Expand All @@ -8,7 +9,7 @@ class Vendor:
endpoint: str
auth_endpoint: str
token_endpoint: str
cert_path: str
cert_path: Union[str, bool] = False
beehive_version: str = "application/vnd.neato.beehive.v1+json"
nucleo_version: str = "application/vnd.neato.nucleo.v1"

Expand Down
1 change: 0 additions & 1 deletion pybotvac/vorwerk.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,3 @@ class Vorwerk(Vendor):
endpoint = "https://beehive.ksecosys.com/"
auth_endpoint = "https://beehive.ksecosys.com/oauth2/authorize"
token_endpoint = "https://beehive.ksecosys.com/oauth2/token"
cert_path = False

0 comments on commit 135cb01

Please sign in to comment.