Update metadata
This commit is contained in:
parent
935d2e534d
commit
f9663a175a
1 changed files with 4 additions and 4 deletions
|
@ -7,10 +7,10 @@
|
|||
# <bitbar.version>v1.0</bitbar.version>
|
||||
# <bitbar.author>Tobias Schmidl</bitbar.author>
|
||||
# <bitbar.author.github>schtobia</bitbar.author.github>
|
||||
# <bitbar.desc>Short description of what your plugin does.</bitbar.desc>
|
||||
# <bitbar.desc>Simulates httping.</bitbar.desc>
|
||||
# <bitbar.image></bitbar.image>
|
||||
# <bitbar.dependencies>python,requests</bitbar.dependencies>
|
||||
# <bitbar.abouturl>https://github.com/schtobia/argos-httping/blob/master/httping.py</bitbar.abouturl>
|
||||
# <bitbar.abouturl>https://gitlab.com/schtobia/argos-httping/blob/master/httping.py</bitbar.abouturl>
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
|
@ -22,9 +22,9 @@ from typing import Dict, List, Optional, Tuple
|
|||
import requests # for the central HTTP HEAD request
|
||||
|
||||
__author__ = "Tobias Schmidl"
|
||||
__copyright__ = "Copyright 2018, Tobias Schmidl"
|
||||
__copyright__ = "Copyright 2021, Tobias Schmidl"
|
||||
__license__ = "MIT"
|
||||
__version__ = "0.0.1"
|
||||
__version__ = "1.0"
|
||||
__maintainer__ = "Tobias Schmidl"
|
||||
|
||||
MAX_PING: datetime.timedelta = datetime.timedelta(milliseconds=1000) # in seconds
|
||||
|
|
Loading…
Reference in a new issue