Skip to content

Commit

Permalink
Remove provider specific
Browse files Browse the repository at this point in the history
  • Loading branch information
maitham committed Jan 3, 2022
1 parent ca8ca01 commit 43c82aa
Show file tree
Hide file tree
Showing 5 changed files with 1 addition and 25 deletions.
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ client.Link.create(user_key="user_key")
client.Body.get(user_key=**,start_date, end_date)
client.Activity.get(user_key=**,start_date, end_date)
client.Sleep.get(user_key=**,start_date, end_date)
client.SourceSpecific.get(user_key=**,start_date, end_date)
client.User.create(client_user_id=**)
client.User.providers(user_key=**)
client.User.get(client_user_id=**)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "vital"
version = "1.0.0"
version = "1.0.1"
description = ""
authors = ["maitham <[email protected]>"]
license = "GNU"
Expand Down
20 changes: 0 additions & 20 deletions tests/api/e2e/test_provider_specific.py

This file was deleted.

2 changes: 0 additions & 2 deletions vital/api/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
from vital.api.activity import Activity
from vital.api.body import Body
from vital.api.link import Link
from vital.api.provider_specific import ProviderSpecific
from vital.api.sleep import Sleep
from vital.api.testkits import Testkits
from vital.api.user import User
Expand All @@ -14,7 +13,6 @@
"Body",
"Activity",
"Sleep",
"ProviderSpecific",
"User",
"Workouts",
"Webhooks",
Expand Down
1 change: 0 additions & 1 deletion vital/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,6 @@ def __init__(
self.Link = Link(self)
self.Body = Body(self)
self.Activity = Activity(self)
self.ProviderSpecific = ProviderSpecific(self)
self.Sleep = Sleep(self)
self.User = User(self)
self.Workouts = Workouts(self)
Expand Down

0 comments on commit 43c82aa

Please sign in to comment.