Skip to content

Commit

Permalink
Fix sample.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Santobert committed Apr 12, 2024
1 parent c73cf53 commit 5243bf3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 11 deletions.
13 changes: 3 additions & 10 deletions sample/sample.py
Original file line number Diff line number Diff line change
@@ -1,17 +1,10 @@
import sys
# ruff: noqa: S105

from pybotvac import (
Account,
Neato,
OAuthSession,
PasswordlessSession,
PasswordSession,
Vorwerk,
)
from pybotvac import Account, Neato, OAuthSession

# Set email and password if you plan to use password authentication.
# Set Client ID and Secret if you plan to use OAuth2.
# If you plan to use email OTP, all you need to do is specify your email and a Client ID.
# If you plan to use email OTP, all you need to do is specify your email and a ClientID.
email = "Your email"
password = "Your password"
client_id = "Your client it"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from setuptools import setup

with open("README.md", "r") as f:
with open("README.md") as f:
long_description = f.read()

setup(
Expand Down

0 comments on commit 5243bf3

Please sign in to comment.