Skip to content

Commit 406d407

Browse files
Copilotnomeguy
andcommitted
Fix Black linter formatting - remove trailing whitespace
Co-authored-by: nomeguy <85475922+nomeguy@users.noreply.github.com>
1 parent 8ececc3 commit 406d407

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

sqlalchemy_adapter/adapter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def create_casbin_rule_class(table_name):
4040
# Create a unique class name based on the table name to avoid SQLAlchemy warnings
4141
# Convert table_name to a valid Python class name
4242
class_name = "CasbinRule_" + "".join(c if c.isalnum() else "_" for c in table_name)
43-
43+
4444
# Dynamically create the class with a unique name
4545
CasbinRule = type(
4646
class_name,

0 commit comments

Comments
 (0)