Skip to content

Commit 79e1d0d

Browse files
committed
chore: clean up import order in cli
1 parent 0b5e426 commit 79e1d0d

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

src/humanloop/cli/__main__.py

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
1-
import click
21
import logging
3-
from typing import Optional, Callable
4-
from functools import wraps
5-
from dotenv import load_dotenv
62
import os
73
import sys
4+
import time
5+
from functools import wraps
6+
from typing import Callable, Optional
7+
8+
import click
9+
from dotenv import load_dotenv
10+
811
from humanloop import Humanloop
912
from humanloop.sync.sync_client import SyncClient
10-
import time
1113

1214
# Set up logging
1315
logger = logging.getLogger(__name__)

0 commit comments

Comments
 (0)