Skip to content

Commit 0c0c584

Browse files
update dependencies
1 parent 9680e2e commit 0c0c584

File tree

4 files changed

+215
-4
lines changed

4 files changed

+215
-4
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,4 @@ bin/
55
/.venv/
66
/asynctkinter.egg-info/
77
/.pytest_cache/
8-
/poetry.lock
98
/dist/

examples/progress_spinner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ async def run_progress_spinner(
2323
while True:
2424
next_start = get_next_start()
2525
next_extent = get_next_extent()
26-
async for s, e in clock.interpolate_sequence((start, extent), (next_start, next_extent), duration=d):
26+
async for s, e in clock.interpolate_seq((start, extent), (next_start, next_extent), duration=d):
2727
draw_target.itemconfig(arc, start=s, extent=e)
2828
start = next_start
2929
extent = next_extent

poetry.lock

Lines changed: 212 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)