-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
PEP8: Reformat files according to PEP8 standards.
Done automatically using `black` (https://github.com/ambv/black).
- Loading branch information
Arik Bar-on
committed
Dec 19, 2018
1 parent
a691743
commit 1cab48b
Showing
34 changed files
with
653 additions
and
400 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,13 @@ | ||
__import__('pkg_resources').declare_namespace(__name__) | ||
__import__("pkg_resources").declare_namespace(__name__) | ||
|
||
from .registry import MetricsRegistry, global_registry, set_global_registry | ||
from .registry import timer, counter, meter, histogram, gauge | ||
from .registry import dump_metrics, clear, count_calls, meter_calls, hist_calls, time_calls | ||
from .registry import ( | ||
dump_metrics, | ||
clear, | ||
count_calls, | ||
meter_calls, | ||
hist_calls, | ||
time_calls, | ||
) | ||
from .meters.timer import call_too_long |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.