diff options
author | Paul "LeoNerd" Evans <paul@matrix.org> | 2015-04-01 19:17:38 +0100 |
---|---|---|
committer | Paul "LeoNerd" Evans <paul@matrix.org> | 2015-04-01 19:17:38 +0100 |
commit | ef1e019840ee8ba17b45754ef223a710ce23553c (patch) | |
tree | c48fa96d2e61902f5929d13bf2a5c88c77ea4f62 /synapse/metrics | |
parent | Report process open filehandles in metrics (diff) | |
download | synapse-ef1e019840ee8ba17b45754ef223a710ce23553c.tar.xz |
Appease pep8
Diffstat (limited to 'synapse/metrics')
-rw-r--r-- | synapse/metrics/__init__.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/synapse/metrics/__init__.py b/synapse/metrics/__init__.py index 6564b03eee..9233ea3da9 100644 --- a/synapse/metrics/__init__.py +++ b/synapse/metrics/__init__.py @@ -122,6 +122,7 @@ TYPES = { stat.S_IFIFO: "FIFO", } + def _process_fds(): counts = {(k,): 0 for k in TYPES.values()} counts[("other",)] = 0 |