Added a flake8 configuration ini file to configure line length.

Configures flake8 to use 128 character lengths for "E501 line too long"
This commit is contained in:
Jake Herbst
2022-05-11 08:16:21 -04:00
parent d5866f2b52
commit 9b12feea5d
2 changed files with 6 additions and 1 deletions
+3 -1
View File
@@ -504,7 +504,9 @@ def handle_client(conn, addr):
str(entry[1])
post_end = " }"
post_json = post_begin + post_timestamp + post_lat + post_lon + post_soundscape_id + post_soundscape_start_time + \
post_json = post_begin + \
post_timestamp + post_lat + post_lon + \
post_soundscape_id + post_soundscape_start_time + \
post_soundscape_end_time + post_commonName + post_scientificName + \
post_algorithm + post_confidence + post_end
print(post_json)