Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Charles Ferguson
timer
Commits
a81adbd2
Commit
a81adbd2
authored
Feb 21, 2017
by
Charles Ferguson
Browse files
Lint fixes for the class creation.
parent
c8092063
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
Timer.py
Timer.py
+2
-2
No files found.
Timer.py
View file @
a81adbd2
...
...
@@ -9,12 +9,12 @@ import time
try
:
# Python 2 can use the 'new' module
import
new
import
new
# pylint: disable=import-error
new_class
=
new
.
classobj
except
ImportError
:
# Python 3 must use the 'types' module
import
types
new_class
=
types
.
new_class
new_class
=
types
.
new_class
# pylint: disable=no-member
from
functools
import
total_ordering
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment