Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
version: bump to 0.2.1
  • Loading branch information
HaeckelK committed Mar 2, 2022
commit ef9135ed6ca19637b9f29a2863233742811bf297
4 changes: 2 additions & 2 deletions python-argparse-generator/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion python-argparse-generator/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "python-argparse-generator",
"version": "0.2.0",
"version": "0.2.1",
"description": "NPM package for generation of Python code (as text) to streamline writing boilerplate argparse setup.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand Down
3 changes: 2 additions & 1 deletion python-argparse-generator/src/__tests__/index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ describe('Check Of argparseCode Output', () => {
default: '/data',
required: true,
},
{ name: 'limit', type: 'int', variableName: 'limit', default: '10', required: true }, ];
{ name: 'limit', type: 'int', variableName: 'limit', default: '10', required: true },
];
test('Basic check of output', () => {
expect(
argparseCode([
Expand Down