Skip to content

Commit 9aa4e52

Browse files
committed
backends: fix notify_prop function of mark_as_modified
1 parent 1386049 commit 9aa4e52

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/backends/file.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -390,8 +390,8 @@ def mark_as_modified(self, tag, notify_prop: bool = False):
390390
if not self._is_modified:
391391
self._is_modified = True
392392
self.notify("is_modified")
393-
if notify_prop:
394-
self.notify(tag)
393+
if notify_prop:
394+
self.notify(tag)
395395
self.emit("modified", tag)
396396

397397
def mark_as_unmodified(self):

0 commit comments

Comments
 (0)