1
0
mirror of https://github.com/minoplhy/filters-maker.git synced 2024-12-22 18:18:13 +00:00

fix uncomplete removal in maker_domains

This commit is contained in:
minoplhy 2021-08-02 21:23:22 +07:00
parent 718713f15e
commit 24c483b156

View File

@ -6,8 +6,8 @@ import pytz
UTC = pytz.utc
date = datetime.datetime.now(UTC)
def linecounter():
with open(input) as f:
def linecounter(incoming):
with open(incoming) as f:
for i, l in enumerate(f):
pass
return i + 1