Merge pull request #4910 from xonsh/anki-code-patch-2

Update dummy.py: simple comment
This commit is contained in:
Andy Kipp 2022-08-04 19:53:07 +06:00 committed by GitHub
commit 7216dc1f8b
Failed to generate hash of commit

View file

@ -11,7 +11,7 @@ class DummyHistory(History):
pass
def items(self, newest_first=False):
yield {"inp": "dummy in action", "ts": 1464652800, "ind": 0}
yield {"inp": "# dummy history backend in action", "ts": 1464652800, "ind": 0}
def all_items(self, newest_first=False):
return self.items(newest_first=newest_first)