Skip to content

Commit 0c7efe3

Browse files
Update setup.py
Minor lint fixes.
1 parent 0094dcd commit 0c7efe3

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212

1313

1414
def find_version(fname):
15-
'''Attempts to find the version number in the file names fname.
15+
"""Attempts to find the version number in the file names fname.
1616
Raises RuntimeError if not found.
17-
'''
17+
"""
1818
version = ''
1919
with open(fname, 'r') as fp:
2020
reg = re.compile(r'__version__ = [\'"]([^\'"]*)[\'"]')
@@ -37,7 +37,7 @@ def find_version(fname):
3737
packages=find_packages(),
3838
include_package_data=True,
3939
install_requires=['requests', 'aiohttp'],
40-
keywords = ['meraki', 'dashboard', 'cisco'],
40+
keywords=['meraki', 'dashboard', 'cisco'],
4141
description='Cisco Meraki Dashboard API library',
4242
long_description=README,
4343
long_description_content_type='text/markdown',

0 commit comments

Comments
 (0)