Skip to content

Commit

Permalink
Update noqa comment placement in filer
Browse files Browse the repository at this point in the history
  • Loading branch information
leodube-aot committed Feb 1, 2024
1 parent 493d264 commit bdc390c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ def consume_nr(business: LegalEntity, filing: Filing, filing_type="incorporation
"""Update the nr to a consumed state."""
try:
# skip this if none (nrNumber will not be available for numbered company)
if nr_num := get_str(
if nr_num := get_str( # noqa F841; remove this comment when below is done
filing.filing_json, f"/filing/{filing_type}/nameRequest/nrNumber"
): # noqa F841; remove this comment when below is done
):
pass

# TODO Consume NR
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@ def update_affiliation(business: LegalEntity, filing: Filing):
"""Create an affiliation for the business and remove the bootstrap."""
try:
bootstrap = RegistrationBootstrap.find_by_identifier(filing.temp_reg)
pass_code = legal_entity_info.get_firm_affiliation_passcode(
pass_code = legal_entity_info.get_firm_affiliation_passcode( # noqa F841; remove this when below is done
business.id
) # noqa F841; remove this comment when below is done
)

nr_number = filing.filing_json.get("filing").get("registration", {}).get("nameRequest", {}).get("nrNumber")
details = { # noqa F841; remove this comment when below is done
Expand Down

0 comments on commit bdc390c

Please sign in to comment.