Skip to content

Commit f420456

Browse files
committed
lint
1 parent 9e5adc3 commit f420456

File tree

2 files changed

+4
-4
lines changed
  • metadata-ingestion

2 files changed

+4
-4
lines changed

metadata-ingestion/src/datahub/ingestion/source/identity/okta.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@
88
from typing import Dict, Iterable, List, Optional, Set, Union
99

1010
import nest_asyncio
11+
from okta.client import Client as OktaClient
12+
from okta.exceptions import OktaAPIException
13+
from okta.models import Group, GroupProfile, User, UserProfile, UserStatus
1114
from pydantic import validator
1215
from pydantic.fields import Field
1316

@@ -47,9 +50,6 @@
4750
StatusClass,
4851
)
4952
from datahub.utilities.lossy_collections import LossyList
50-
from okta.client import Client as OktaClient
51-
from okta.exceptions import OktaAPIException
52-
from okta.models import Group, GroupProfile, User, UserProfile, UserStatus
5353

5454
logger = logging.getLogger(__name__)
5555
nest_asyncio.apply()

metadata-ingestion/tests/integration/okta/test_okta.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@
66
import jsonpickle
77
import pytest
88
from freezegun import freeze_time
9+
from okta.models import Group, User
910

1011
from datahub.ingestion.run.pipeline import Pipeline
1112
from datahub.ingestion.source.identity.okta import OktaConfig
12-
from okta.models import Group, User
1313
from tests.test_helpers import mce_helpers
1414
from tests.test_helpers.state_helpers import (
1515
get_current_checkpoint_from_pipeline,

0 commit comments

Comments
 (0)