Skip to content

Commit

Permalink
CRC -> CRCD
Browse files Browse the repository at this point in the history
  • Loading branch information
Comeani committed Nov 11, 2024
1 parent fb19bac commit 30859d6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions apps/crc_proposal_end.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Print the end date for an account's proposal.
This application is designed to interface with the CRC banking application
This application is designed to interface with the CRCD banking application
and will not work without a running bank installation.
"""

Expand All @@ -15,7 +15,7 @@


class CrcProposalEnd(BaseParser):
"""Display the end date for an account's current CRC proposal."""
"""Display the end date for an account's current CRCD proposal."""

def __init__(self) -> None:
"""Define arguments for the command line interface"""
Expand All @@ -34,7 +34,7 @@ def app_logic(self, args: Namespace) -> None:

Slurm.check_slurm_account_exists(args.account)
keystone_session = KeystoneClient(url=KEYSTONE_URL)
keystone_session.login(username=os.environ["USER"], password=getpass("Please enter your CRC login password:\n"))
keystone_session.login(username=os.environ["USER"], password=getpass("Please enter your CRCD login password:\n"))

Check notice on line 37 in apps/crc_proposal_end.py

View check run for this annotation

Codacy Production / Codacy Static Code Analysis

apps/crc_proposal_end.py#L37

Line too long (121/120)

team_id = get_team_id(keystone_session, args.account)
alloc_requests = get_active_requests(keystone_session, team_id)
Expand Down
2 changes: 1 addition & 1 deletion apps/crc_sus.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def app_logic(self, args: Namespace) -> None:

Slurm.check_slurm_account_exists(account_name=args.account)
keystone_session = KeystoneClient(url=KEYSTONE_URL)
keystone_session.login(username=os.environ["USER"], password=getpass("Please enter your CRC login password:\n"))
keystone_session.login(username=os.environ["USER"], password=getpass("Please enter your CRCD login password:\n"))

Check notice on line 62 in apps/crc_sus.py

View check run for this annotation

Codacy Production / Codacy Static Code Analysis

apps/crc_sus.py#L62

Line too long (121/120)

group_id = get_team_id(keystone_session, args.account)
alloc_requests = get_active_requests(keystone_session, group_id)
Expand Down

0 comments on commit 30859d6

Please sign in to comment.