Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Clean up some imports #141

Merged
merged 1 commit into from
Jul 27, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions src/gretel_trainer/relational/artifacts.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
import os
import shutil
import tarfile
import tempfile
from dataclasses import dataclass
from pathlib import Path
Expand Down
2 changes: 1 addition & 1 deletion src/gretel_trainer/relational/task_runner.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import logging
from collections import defaultdict
from typing import Protocol

from gretel_client.projects.jobs import END_STATES, Job, Status
from gretel_client.projects.projects import Project
from typing_extensions import Protocol

from gretel_trainer.relational.sdk_extras import ExtendedGretelSDK

Expand Down
3 changes: 1 addition & 2 deletions src/gretel_trainer/relational/tasks/common.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
import logging
import time
from typing import Union
from typing import Protocol, Union

from gretel_client.projects.jobs import Job, Status
from gretel_client.projects.projects import Project
from typing_extensions import Protocol

from gretel_trainer.relational.core import RelationalData
from gretel_trainer.relational.sdk_extras import ExtendedGretelSDK
Expand Down
Loading