Skip to content

Commit fe8bebb

Browse files
fix: Rename generateCustomTileConfig
The function was renamed, but this one was overlooked.
1 parent 417e28f commit fe8bebb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

FABulous/fabric_generator/parser/parse_csv.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -536,11 +536,11 @@ def parseFabricCSV(fileName: str) -> Fabric:
536536
if "GENERATE" in i:
537537
# import here to avoid circular import
538538
from FABulous.fabric_generator.gen_fabric.fabric_automation import (
539-
generate_custom_tile_config,
539+
generateCustomTileConfig,
540540
)
541541

542542
# we generate the tile right before we parse everything
543-
i[1] = str(generate_custom_tile_config(filePath.joinpath(i[1])))
543+
i[1] = str(generateCustomTileConfig(filePath.joinpath(i[1])))
544544

545545
new_tiles, new_commonWirePair = parseTilesCSV(filePath.joinpath(i[1]))
546546
tileTypes += [new_tile.name for new_tile in new_tiles]

0 commit comments

Comments
 (0)