refactor: Replace list() and dict() calls with literals (#7198)

This commit is contained in:
Caeden
2022-10-15 02:07:03 +01:00
committed by GitHub
parent dcca5351c9
commit 6e69181d1f
10 changed files with 14 additions and 14 deletions

View File

@@ -54,7 +54,7 @@ def get_frequency_table(edge_array):
Returns Frequency Table
"""
distinct_edge = get_distinct_edge(edge_array)
frequency_table = dict()
frequency_table = {}
for item in distinct_edge:
bit = get_bitcode(edge_array, item)