Corrected one typo in the fill generation script.
diff --git a/sky130/custom/scripts/generate_fill.py b/sky130/custom/scripts/generate_fill.py
index 9a1e3dc..e9726ba 100755
--- a/sky130/custom/scripts/generate_fill.py
+++ b/sky130/custom/scripts/generate_fill.py
@@ -232,8 +232,8 @@
         filelist = os.listdir(magpath)
         for file in filelist:
             if os.path.splitext(magpath + '/' + file)[1] == '.gds':
-                if file.startswith(project + '_fill_pattern_')
-                    os.remove(magpath + '/' + file
+                if file.startswith(project + '_fill_pattern_'):
+                    os.remove(magpath + '/' + file)
 
     print('Done!')
     exit(0)