mgbam commited on
Commit
0e3fb27
·
verified ·
1 Parent(s): 89da890

Update core/utils.py

Browse files
Files changed (1) hide show
  1. core/utils.py +6 -0
core/utils.py CHANGED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ # algoforge_prime/core/utils.py
2
+ # For now, this can be empty or have very generic helpers.
3
+ # Example:
4
+ # def sanitize_filename(name):
5
+ # return "".join([c for c in name if c.isalpha() or c.isdigit() or c_ in (' ','_')]).rstrip()
6
+ pass