We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 417e28f commit fe8bebbCopy full SHA for fe8bebb
FABulous/fabric_generator/parser/parse_csv.py
@@ -536,11 +536,11 @@ def parseFabricCSV(fileName: str) -> Fabric:
536
if "GENERATE" in i:
537
# import here to avoid circular import
538
from FABulous.fabric_generator.gen_fabric.fabric_automation import (
539
- generate_custom_tile_config,
+ generateCustomTileConfig,
540
)
541
542
# we generate the tile right before we parse everything
543
- i[1] = str(generate_custom_tile_config(filePath.joinpath(i[1])))
+ i[1] = str(generateCustomTileConfig(filePath.joinpath(i[1])))
544
545
new_tiles, new_commonWirePair = parseTilesCSV(filePath.joinpath(i[1]))
546
tileTypes += [new_tile.name for new_tile in new_tiles]
0 commit comments