Skip to content

chore(internal): remove redundant decorator args #259

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 9, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 0 additions & 8 deletions src/orb/resources/customers/credits/ledger.py
Original file line number Diff line number Diff line change
Expand Up @@ -1028,11 +1028,9 @@ def create_entry(
...

@required_args(
["amount", "entry_type"],
["amount", "entry_type"],
["entry_type", "expiry_date", "target_expiry_date"],
["amount", "block_id", "entry_type"],
["amount", "block_id", "entry_type"],
)
def create_entry(
self,
Expand Down Expand Up @@ -1921,11 +1919,9 @@ def create_entry_by_external_id(
...

@required_args(
["amount", "entry_type"],
["amount", "entry_type"],
["entry_type", "expiry_date", "target_expiry_date"],
["amount", "block_id", "entry_type"],
["amount", "block_id", "entry_type"],
)
def create_entry_by_external_id(
self,
Expand Down Expand Up @@ -3150,11 +3146,9 @@ async def create_entry(
...

@required_args(
["amount", "entry_type"],
["amount", "entry_type"],
["entry_type", "expiry_date", "target_expiry_date"],
["amount", "block_id", "entry_type"],
["amount", "block_id", "entry_type"],
)
async def create_entry(
self,
Expand Down Expand Up @@ -4043,11 +4037,9 @@ async def create_entry_by_external_id(
...

@required_args(
["amount", "entry_type"],
["amount", "entry_type"],
["entry_type", "expiry_date", "target_expiry_date"],
["amount", "block_id", "entry_type"],
["amount", "block_id", "entry_type"],
)
async def create_entry_by_external_id(
self,
Expand Down