Correcting travis issues
This commit is contained in:
parent
bad04d82da
commit
d481a5f3ba
|
@ -7,7 +7,7 @@
|
|||
# For a copy, see <https://opensource.org/licenses/MIT>.
|
||||
|
||||
|
||||
from builtins import input_data
|
||||
from builtins import input as input_data
|
||||
|
||||
import csv
|
||||
import datetime
|
||||
|
@ -269,7 +269,7 @@ class Benchmark(object):
|
|||
# Make a date file: to show when this was modified,
|
||||
# the number of times the experiments were run
|
||||
now = datetime.datetime.now()
|
||||
open(os.path.join(full_name, now.strftime("%Y%m%d%H%M"))).close()
|
||||
open(os.path.join(full_name, now.strftime("%Y%m%d%H%M")),'w').close()
|
||||
|
||||
return suffix_name, full_name
|
||||
|
||||
|
|
|
@ -9,7 +9,6 @@
|
|||
from __future__ import print_function
|
||||
|
||||
import os
|
||||
import datetime
|
||||
|
||||
from .benchmark import Benchmark
|
||||
from .experiment import Experiment
|
||||
|
|
|
@ -8,7 +8,6 @@
|
|||
|
||||
import argparse
|
||||
import logging
|
||||
import sys
|
||||
import time
|
||||
|
||||
from carla.benchmarks.agent import Agent
|
||||
|
|
Loading…
Reference in New Issue