Skip to content

Commit

Permalink
Fixed a performance bug (no effect to the results/reports)
Browse files Browse the repository at this point in the history
  • Loading branch information
zhenghaven committed Mar 18, 2024
1 parent c30e03c commit 37f9931
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions zyAPI/Interfaces/Assignment.py
Original file line number Diff line number Diff line change
Expand Up @@ -409,9 +409,9 @@ def ExportReportWithDues(
includeTimeSpent=includeTimeSpent,
)

for due in dues:
for dIdx in range(1, len(dues)):
_, dfNext = self.ExportReportWithDue(
due=due,
due=dues[dIdx],
includeTimeSpent=includeTimeSpent,
)
for i in range(len(df.columns)):
Expand Down
2 changes: 1 addition & 1 deletion zyAPI/_Meta.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@



__version__ = '0.1.0'
__version__ = '0.1.1'

PKG_AUTHOR = 'Haofan Zheng, Languages Systems and Data Lab, UC Santa Cruz'
PKG_NAME = 'zyAPI'
Expand Down

0 comments on commit 37f9931

Please sign in to comment.