check-rabbitmq-consumers: Fix typing import issue.

This commit is contained in:
Tim Abbott 2017-03-04 15:35:26 -08:00
parent 899b59e9d6
commit 0afe832fc7
1 changed files with 3 additions and 1 deletions

View File

@ -5,10 +5,12 @@ import sys
import time
import optparse
from collections import defaultdict
from typing import Dict
import os
import subprocess
if False:
from typing import Dict
states = {
0: "OK",
1: "WARNING",