Skip to content

Commit 797d509

Browse files
Minor fix
1 parent 267e40f commit 797d509

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

FABulous/fabric_generator/file_parser.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,9 @@ def parseFabricCSV(fileName: str) -> Fabric:
138138
if i[0].startswith("Tile"):
139139
if "GENERATE" in i:
140140
# import here to avoid circular import
141+
from FABulous.fabric_generator.fabric_automation import (
142+
generate_custom_tile_config,
143+
)
141144

142145
# we generate the tile right before we parse everything
143146
i[1] = str(generate_custom_tile_config(filePath.joinpath(i[1])))

docs/source/Building fabric.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@ completed.
1616

1717
.. prompt:: bash
1818

19-
FABulous -c demo
19+
(venv)$ FABulous -c demo
2020

2121
This will create a new project named ``demo`` in the current directory.
2222

2323
#. Running the FABulous shell
2424

25-
.. prompt:: bash FABulous>
25+
.. prompt:: bash
2626

27-
FABulous demo
27+
(venv)$ FABulous demo
2828

2929
And now, we will be in the FABulous shell. After running the above command, the current working directory will be
3030
moved into the project directory, which is ``demo`` in this case.

0 commit comments

Comments
 (0)