Skip to content

Commit

Permalink
google: Don't import unnecessary classes
Browse files Browse the repository at this point in the history
  • Loading branch information
naisanzaa committed Sep 27, 2023
1 parent 1002b63 commit 21f1683
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 7 deletions.
3 changes: 0 additions & 3 deletions automon/integrations/google/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +0,0 @@
from .auth import GoogleAuthClient
from .gmail import GoogleGmailClient
from .people import GooglePeopleClient
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import unittest

from automon.integrations.google import GooglePeopleClient
from automon.integrations.google.people import GooglePeopleClient

c = GooglePeopleClient()

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import unittest

from automon.integrations.google import GooglePeopleClient
from automon.integrations.google.people import GooglePeopleClient
from automon.integrations.neo4jWrapper import Neo4jClient

c = GooglePeopleClient()
Expand Down
2 changes: 1 addition & 1 deletion automon/integrations/google/tests/test_google_contacts.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import unittest

from automon.integrations.google import GooglePeopleClient
from automon.integrations.google.people import GooglePeopleClient

c = GooglePeopleClient()

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import unittest

from automon.integrations.google import GooglePeopleClient
from automon.integrations.google.people import GooglePeopleClient
from automon.integrations.neo4jWrapper import Neo4jClient

c = GooglePeopleClient()
Expand Down

0 comments on commit 21f1683

Please sign in to comment.