Compare commits

..

4 Commits

Author SHA1 Message Date
skullY e75b4d4ed1 New release: 0.0.24 → 0.0.25 2019-11-18 22:33:19 -08:00
skullY 7f56cfd781 Add flake8 to requirements 2019-11-18 22:33:14 -08:00
skullY b04bf7a4da New release: 0.0.23 → 0.0.24 2019-11-15 23:25:13 -08:00
skullY fb260f29e1 Fix commands with no arguments 2019-11-15 23:15:07 -08:00
4 changed files with 4 additions and 3 deletions
+1 -1
View File
@@ -501,7 +501,7 @@ class MILC(object):
if argument not in self.arg_only:
# Find the argument's section
if argument in self.default_arguments[self._entrypoint.__name__]:
if self._entrypoint.__name__ in self.default_arguments and argument in self.default_arguments[self._entrypoint.__name__]:
argument_found = True
section = self._entrypoint.__name__
if argument in self.default_arguments['general']:
+1 -1
View File
@@ -1,3 +1,3 @@
"""A program to help you work with qmk_firmware."""
__version__ = '0.0.23'
__version__ = '0.0.25'
+1 -1
View File
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.0.23
current_version = 0.0.25
commit = True
tag = True
tag_name = {new_version}
+1
View File
@@ -44,6 +44,7 @@ if __name__ == "__main__":
"appdirs",
"argcomplete",
"colorama",
"flake8",
"hjson",
"yapf"
],