Skip to content

Commit e01664a

Browse files
committed
Aesthetic changes, commented code
1 parent f818219 commit e01664a

File tree

3 files changed

+160
-83
lines changed

3 files changed

+160
-83
lines changed

render_maxio.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@
2424
infile = args[0]
2525
outfile = args[1]
2626

27-
maxio_rmtool_path = os.environ["HOME"] + "/Remarkable/maxio/rm_tools/rmtool.py" # modify depending on where maxio is installed!
27+
maxio_rmtool_path = os.environ["HOME"] + "/Remarkable/maxio/rm_tools/rmtool.py" # NOTE: modify depending on where maxio is installed!
2828
status, _ = subprocess.getstatusoutput(f"{maxio_rmtool_path} convert \"{infile}\" \"{outfile}\"") # convert raw files to PDF
2929
exit(status)

render_usb.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
infile = args[0]
1818
outfile = args[1]
1919

20-
# RM file stems end with their uuid,
21-
# to render and download it from the USB web interface
20+
# RM file stems end with their UUID:
21+
# "abuse" this to render and download it from the USB web interface
2222
uuid = os.path.basename(infile)
2323
url = f"http://10.11.99.1/download/{uuid}/placeholder"
2424
try:

0 commit comments

Comments
 (0)