Skip to content

Commit 14e8556

Browse files
author
Alan Christie
committed
Lint fix
1 parent 1eeef0e commit 14e8556

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jote/compose.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ def __init__(self, collection: str,
7373
if memory.endswith('Mi'):
7474
self._memory: str = f'{memory[:-2]}m'
7575
elif memory.endswith('Gi'):
76-
self._memory: str = f'{memory[:-2]}g'
76+
self._memory = f'{memory[:-2]}g'
7777
assert self._memory
7878

7979
self._collection: str = collection

0 commit comments

Comments
 (0)