Fix typo 'date/nowater' -> 'data/nowater'
parent
405a113598
commit
8eb7f14594
|
@ -15,12 +15,12 @@ verbs = [
|
|||
|
||||
class IgnoredUsers:
|
||||
def __init__(self):
|
||||
if 'date/nowater.txt' not in listdir():
|
||||
open('date/nowater.txt', 'w').close()
|
||||
if 'data/nowater.txt' not in listdir():
|
||||
open('data/nowater.txt', 'w').close()
|
||||
|
||||
@property
|
||||
def users(self):
|
||||
with open('date/nowater.txt', 'r') as w:
|
||||
with open('data/nowater.txt', 'r') as w:
|
||||
u = [i.strip() for i in w.readlines() if i.strip()]
|
||||
return u
|
||||
|
||||
|
|
Loading…
Reference in New Issue