Skip to content

Conversation

@leavesster
Copy link
Contributor

Summary

  • Remove duplicate entries from __all__ list in data.py

Problem

__all__ contained duplicate entries:

__all__ = ["dumps", "BinValueDict", "VarValueDict", "JobDict", "BlockDict", 
           "StoreKey", "BlockInfo", "EXECUTOR_NAME", 
           "JobDict", "BinValueDict", "VarValueDict"]  # duplicates!

Solution

__all__ = ["dumps", "BinValueDict", "VarValueDict", "JobDict", "BlockDict", 
           "StoreKey", "BlockInfo", "EXECUTOR_NAME"]

Test Plan

  • All existing tests pass

JobDict, BinValueDict, and VarValueDict were duplicated in __all__.
Copilot AI review requested due to automatic review settings January 31, 2026 09:28
@coderabbitai
Copy link

coderabbitai bot commented Jan 31, 2026

Warning

Rate limit exceeded

@leavesster has exceeded the limit for the number of commits that can be reviewed per hour. Please wait 5 minutes and 20 seconds before requesting another review.

⌛ How to resolve this issue?

After the wait time has elapsed, a review can be triggered using the @coderabbitai review command as a PR comment. Alternatively, push new commits to this PR.

We recommend that you space out your commits to avoid hitting the rate limit.

🚦 How do rate limits work?

CodeRabbit enforces hourly rate limits for each developer per organization.

Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout.

Please see our FAQ for further information.


Comment @coderabbitai help to get the list of available commands and usage tips.

Copy link
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

This PR removes duplicate entries from the __all__ list in data.py to clean up the module's public API exports.

Changes:

  • Removed duplicate entries ("JobDict", "BinValueDict", "VarValueDict") from the __all__ list in data.py

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

@leavesster leavesster changed the title fix: remove duplicate entries from __all__ in data.py fix(oocana): remove duplicate entries from __all__ in data.py Jan 31, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants