summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-12-21 18:20:52 +0000
committerCarl Hetherington <cth@carlh.net>2015-12-21 18:20:52 +0000
commit0920393ada3dc07633e745a7c3b4186ce363a220 (patch)
treede963ec3e0e2045578b147e7b5a02a1e653e2367
parent4d863308ded1dc0b72ff7816d5b63474e87c5bdd (diff)
Python style.
-rw-r--r--hacks/analog.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/hacks/analog.py b/hacks/analog.py
index 8a43518bd..760f58ea0 100644
--- a/hacks/analog.py
+++ b/hacks/analog.py
@@ -29,7 +29,7 @@ def find_nth(haystack, needle, n):
# Representation of time in seconds and microseconds
class Time:
- def __init__(self, s = 0, m = 0):
+ def __init__(self, s=0, m=0):
self.seconds = s
self.microseconds = m