Skip to content

Commit

Permalink
flux-simulator: cleanup imports
Browse files Browse the repository at this point in the history
  • Loading branch information
SteVwonder committed May 14, 2019
1 parent 1799ff7 commit e303663
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/cmd/flux-simulator
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,20 @@ from __future__ import print_function
import argparse
import re
import csv
import six
import sys
import math
import json
import logging
import heapq
from abc import ABCMeta, abstractmethod
from datetime import datetime, timedelta
from itertools import groupby
from operator import attrgetter
from collections import defaultdict, Sequence
from collections import Sequence

import six
import flux
from flux import job, rpc, util, kvs
from flux.rpc import RPC
import flux.job
import flux.util
import flux.kvs
import flux.constants


def create_resource(res_type, count, with_child=[]):
Expand Down

0 comments on commit e303663

Please sign in to comment.