Skip to content

Commit

Permalink
Fix python < 3.8 compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
zach-b authored and peay committed Nov 8, 2023
1 parent 39f6fcc commit 750bfe6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sqlalchemy_rdsiam/rds.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@
import boto3


@functools.lru_cache
@functools.lru_cache()
def rds_client(region_name: str) -> Any:
return boto3.client("rds", region_name=region_name)

0 comments on commit 750bfe6

Please sign in to comment.