diff --git a/sample/sample.py b/sample/sample.py index e14eaa8..9a12ebd 100644 --- a/sample/sample.py +++ b/sample/sample.py @@ -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" diff --git a/setup.py b/setup.py index e8444b6..bee7942 100644 --- a/setup.py +++ b/setup.py @@ -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(