Skip to content

Commit

Permalink
enforce positional args
Browse files Browse the repository at this point in the history
  • Loading branch information
mbordash2 committed Nov 22, 2024
1 parent 9d301bd commit 05d3600
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions runway/cfngin/exceptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ class CfnginBucketNotFound(CfnginError):
bucket_name: str | None
message: str

def __init__(self, *, bucket_name: str | None = None) -> None:
def __init__(self, bucket_name: str | None = None) -> None:
"""Instantiate class.
Args:
Expand All @@ -85,7 +85,7 @@ class CfnginBucketRequired(CfnginError):
config_path: Path | None
message: str

def __init__(self, *, config_path: AnyPath | None = None, reason: str | None = None) -> None:
def __init__(self, config_path: AnyPath | None = None, reason: str | None = None) -> None:
"""Instantiate class.
Args:
Expand Down

0 comments on commit 05d3600

Please sign in to comment.