mirror of
https://github.com/kennethreitz/dive-into-python3.git
synced 2026-06-05 23:10:17 +00:00
fixed plural6 for the last fucking time
This commit is contained in:
+2
-2
@@ -19,10 +19,10 @@ class LazyRules:
|
||||
|
||||
def __init__(self):
|
||||
self.pattern_file = open(self.rules_filename, encoding='utf-8')
|
||||
|
||||
def __iter__(self):
|
||||
self.cache = []
|
||||
self.cache_index = 0
|
||||
|
||||
def __iter__(self):
|
||||
return self
|
||||
|
||||
def __next__(self):
|
||||
|
||||
Reference in New Issue
Block a user