Skip to content

Commit

Permalink
Fix slash
Browse files Browse the repository at this point in the history
Signed-off-by: Sara Damiano <[email protected]>
  • Loading branch information
SRGDamia1 committed Aug 13, 2024
1 parent 234ab69 commit c5b285c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/documentExamples.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,13 @@
# %%
# Find all of the examples in the examples folder, append the path "examples" to it
examples_to_doc = [
os.path.abspath(os.path.realpath(f"{examples_path}\\{f}\\{f}.ino"))
os.path.abspath(os.path.realpath(f"{examples_path}/{f}/{f}.ino"))
for f in os.listdir(examples_path)
if os.path.isdir(os.path.join(examples_path, f))
and f not in [".history", "logger_test", "menu_a_la_carte"]
]
examples_to_doc += [
os.path.abspath(os.path.realpath(f"{extras_path}\\{f}\\{f}.ino"))
os.path.abspath(os.path.realpath(f"{extras_path}/{f}/{f}.ino"))
for f in os.listdir(extras_path)
if os.path.isdir(os.path.join(extras_path, f))
and f not in [".history", "logger_test", "menu_a_la_carte"]
Expand Down

0 comments on commit c5b285c

Please sign in to comment.