Skip to content

Commit 2af95a7

Browse files
committed
[client] Fix linting / formatting
1 parent 5ceab3a commit 2af95a7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pyobas/apis/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
from .kill_chain_phase import * # noqa: F401,F403
99
from .me import * # noqa: F401,F403
1010
from .organization import * # noqa: F401,F403
11+
from .payload import * # noqa: F401,F403
1112
from .team import * # noqa: F401,F403
1213
from .user import * # noqa: F401,F403
13-
from .payload import * # noqa: F401,F403
1414

1515
__all__ = [name for name in dir() if not name.startswith("_")]

pyobas/apis/payload.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from typing import Any, Dict, List
1+
from typing import Any, Dict
22

33
from pyobas import exceptions as exc
44
from pyobas.base import RESTManager, RESTObject

0 commit comments

Comments
 (0)