Skip to content
This repository has been archived by the owner on Oct 4, 2024. It is now read-only.

Commit

Permalink
clean up code
Browse files Browse the repository at this point in the history
  • Loading branch information
SebastienLavoie committed Feb 15, 2020
1 parent a0a9315 commit 879027e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion adt/decorator.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def adt(cls):

values = list(caseConstructors.values())
types = []
for i in range(len(caseConstructors.values())):
for i in range(len(values)):
try:
types.append(values[i]._argType)
except AttributeError:
Expand Down

0 comments on commit 879027e

Please sign in to comment.