Skip to content

Commit

Permalink
refactor: format backend/python/tapa/util.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Blaok committed Jul 2, 2022
1 parent 5c3f998 commit 42db8f7
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion backend/python/tapa/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,16 @@
import shutil
import subprocess
import time
from typing import Dict, Iterator, TextIO, Tuple, Optional
from typing import Dict, Iterator, Optional, TextIO, Tuple

import absl.logging
import coloredlogs

# TODO(blaok): fix cyclic dependency
# isort: off
from .task import Task
from .instance import Instance
# isort: on

_logger = logging.getLogger().getChild(__name__)

Expand Down

0 comments on commit 42db8f7

Please sign in to comment.