Skip to content

Commit c42cfaa

Browse files
committed
Use dict instead of OrderedDict
1 parent 625a1ee commit c42cfaa

1 file changed

Lines changed: 1 addition & 6 deletions

File tree

src/croniter/croniter.py

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
import struct
1111
import sys
1212
import traceback as _traceback
13-
from collections import OrderedDict
1413
from time import time
1514

1615
from dateutil.relativedelta import relativedelta
@@ -1298,8 +1297,4 @@ def expand(self, efl, idx, expr, hash_id=None, match="", **kw):
12981297
)
12991298

13001299

1301-
EXPANDERS = OrderedDict(
1302-
[
1303-
("hash", HashExpander),
1304-
]
1305-
)
1300+
EXPANDERS = {"hash": HashExpander}

0 commit comments

Comments
 (0)