From 57f0efb6fc79b79125241abedafe3db590288ddf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alex=20Gr=C3=B6nholm?= Date: Sun, 3 Mar 2013 05:33:07 +0200 Subject: Changed line length limit from 79 characters to 120 and reformatted the code accordingly --- examples/interval.py | 3 +-- examples/persistent.py | 7 +++---- examples/reference.py | 3 +-- examples/threaded.py | 3 +-- 4 files changed, 6 insertions(+), 10 deletions(-) (limited to 'examples') diff --git a/examples/interval.py b/examples/interval.py index e16596c..cb7c4f4 100644 --- a/examples/interval.py +++ b/examples/interval.py @@ -1,6 +1,5 @@ """ -Basic example showing how to start the scheduler and schedule a job that -executes on 3 second intervals. +Basic example showing how to start the scheduler and schedule a job that executes on 3 second intervals. """ from datetime import datetime diff --git a/examples/persistent.py b/examples/persistent.py index 4233e3c..51c2571 100644 --- a/examples/persistent.py +++ b/examples/persistent.py @@ -1,8 +1,7 @@ """ -This example demonstrates the use of persistent job stores. On each run, it -adds a new alarm that fires after ten seconds. You can exit the program, -restart it and observe that any previous alarms that have not fired yet are -still active. +This example demonstrates the use of persistent job stores. +On each run, it adds a new alarm that fires after ten seconds. +You can exit the program, restart it and observe that any previous alarms that have not fired yet are still active. """ from datetime import datetime, timedelta diff --git a/examples/reference.py b/examples/reference.py index a31c543..8be45e9 100644 --- a/examples/reference.py +++ b/examples/reference.py @@ -1,6 +1,5 @@ """ -Basic example showing how to schedule a callable using a textual -reference. +Basic example showing how to schedule a callable using a textual reference. """ from apscheduler.scheduler import Scheduler diff --git a/examples/threaded.py b/examples/threaded.py index b80f36f..2c612cd 100644 --- a/examples/threaded.py +++ b/examples/threaded.py @@ -1,6 +1,5 @@ """ -Basic example showing how the scheduler integrates with the application it's -running alongside with. +Basic example showing how the scheduler integrates with the application it's running alongside with. """ from datetime import datetime -- cgit v1.2.1