This commit is contained in:
charlesbvll 2021-04-25 10:29:03 +02:00
parent 3458cc58e9
commit e94c8458f0
5 changed files with 7 additions and 10 deletions

View File

@ -273,5 +273,4 @@ def create_empty_files(dir_out, net):
for i in range(7481): for i in range(7481):
name = "0" * (6 - len(str(i))) + str(i) + '.txt' name = "0" * (6 - len(str(i))) + str(i) + '.txt'
ff = open(os.path.join(dir_out[net], name), "a+") with open(os.path.join(dir_out[net], name), "a+"): pass
ff.close()

View File

@ -161,8 +161,7 @@ def read_and_rewrite(path_orig, path_new):
line_new = temp_1 + ' ' + hwl + ' ' + temp_2 + '\n' line_new = temp_1 + ' ' + hwl + ' ' + temp_2 + '\n'
ff.write("%s" % line_new) ff.write("%s" % line_new)
except FileNotFoundError: except FileNotFoundError:
ff = open(path_new, "a+") with open(path_new, "a+"): pass
ff.close()
def find_cluster(dd, clusters): def find_cluster(dd, clusters):

View File

@ -443,4 +443,3 @@ def social_distance_colors(colors, dic_out):
# Prepare color for social distancing # Prepare color for social distancing
colors = ['r' if flag else colors[idx] for idx,flag in enumerate(dic_out['social_distance'])] colors = ['r' if flag else colors[idx] for idx,flag in enumerate(dic_out['social_distance'])]
return colors return colors