Skip to content

Commit 1fc9374

Browse files
committed
Removed print()
1 parent afd93d5 commit 1fc9374

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

flat_postprocess/oui_postprocess.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ def download_csv_text(url: str = URL) -> str:
3636
with open(output_path, "r", encoding="utf-8", newline="") as oui_file:
3737
for line in oui_file:
3838
if re.search(HEX_RE, line):
39-
print()
4039
group_regex_values = re.search(HEX_RE, line).groupdict()
4140
if group_regex_values.get("hex") and group_regex_values.get("company"):
4241
OUI_MAPPINGS.update({group_regex_values.get("hex").lower(): group_regex_values.get("company")})

0 commit comments

Comments
 (0)