summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorAlex Grönholm <alex.gronholm@nextday.fi>2013-03-03 05:33:07 +0200
committerAlex Grönholm <alex.gronholm@nextday.fi>2013-03-03 05:33:07 +0200
commit57f0efb6fc79b79125241abedafe3db590288ddf (patch)
tree033637e7169114b76c1b3d002d915c513641c7f1 /examples
parent62b4ef05ee4d84e5cb90d2c377119a8258e5c193 (diff)
downloadapscheduler-57f0efb6fc79b79125241abedafe3db590288ddf.tar.gz
Changed line length limit from 79 characters to 120 and reformatted the code accordingly
Diffstat (limited to 'examples')
-rw-r--r--examples/interval.py3
-rw-r--r--examples/persistent.py7
-rw-r--r--examples/reference.py3
-rw-r--r--examples/threaded.py3
4 files changed, 6 insertions, 10 deletions
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