Skip to content

Commit

Permalink
fix import ordering
Browse files Browse the repository at this point in the history
  • Loading branch information
cosmicexplorer committed Aug 31, 2019
1 parent c0ff3d1 commit b9511ae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/python/pants/engine/rules.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@
# Licensed under the Apache License, Version 2.0 (see LICENSE).

import ast
import dataclasses
import inspect
import itertools
import logging
import sys
from abc import ABC, abstractmethod
from collections import OrderedDict
from collections.abc import Iterable
from dataclasses import dataclass
from typing import Any, Dict, Set

import asttokens
import dataclasses
from dataclasses import dataclass
from twitter.common.collections import OrderedSet

from pants.engine.goal import Goal
Expand Down

0 comments on commit b9511ae

Please sign in to comment.