Skip to content

Commit

Permalink
Version bump.
Browse files Browse the repository at this point in the history
  • Loading branch information
aminusfu committed Jul 5, 2019
1 parent 9e14423 commit 1115147
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

setup(
name="diagnose",
version="1.0.1",
version="2.0.0",
author="Robert Brewer",
author_email="[email protected]",
description="A library for instrumenting Python code at runtime.",
Expand Down
4 changes: 3 additions & 1 deletion src/diagnose/instruments.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,9 @@ class Instrument(object):

error_expiration = datetime.datetime(1970, 1, 1)

def __init__(self, name, value, internal=False, expires=None, custom=None, mgr=None, **kwargs):
def __init__(
self, name, value, internal=False, expires=None, custom=None, mgr=None, **kwargs
):
if mgr is None:
mgr = diagnose.manager
self.mgr = mgr
Expand Down

0 comments on commit 1115147

Please sign in to comment.