We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent afd93d5 commit 1fc9374Copy full SHA for 1fc9374
flat_postprocess/oui_postprocess.py
@@ -36,7 +36,6 @@ def download_csv_text(url: str = URL) -> str:
36
with open(output_path, "r", encoding="utf-8", newline="") as oui_file:
37
for line in oui_file:
38
if re.search(HEX_RE, line):
39
- print()
40
group_regex_values = re.search(HEX_RE, line).groupdict()
41
if group_regex_values.get("hex") and group_regex_values.get("company"):
42
OUI_MAPPINGS.update({group_regex_values.get("hex").lower(): group_regex_values.get("company")})
0 commit comments