Skip to content

Commit fa92384

Browse files
authored
fix/add type annotation to slugify (#1320)
Signed-off-by: Jonathan Springer <[email protected]>
1 parent ca73654 commit fa92384

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mcpgateway/utils/create_slug.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
}
3030

3131

32-
def slugify(text):
32+
def slugify(text: str) -> str:
3333
"""Make an ASCII slug of text.
3434
3535
Args:

0 commit comments

Comments
 (0)