From: Carl Hetherington Date: Mon, 21 Dec 2015 18:20:52 +0000 (+0000) Subject: Python style. X-Git-Tag: v2.6.9~8 X-Git-Url: https://git.carlh.net/gitweb/?p=dcpomatic.git;a=commitdiff_plain;h=0920393ada3dc07633e745a7c3b4186ce363a220 Python style. --- 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