Skip to content

Commit

Permalink
typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin committed Nov 11, 2024
1 parent 9fe3075 commit 2806c1c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion converter_app/readers/mpr.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def _convert_data_table(self, dict_value, table, value_name):
units = ''

table['columns'].append({
'key': f'{len(table['columns'])}',
'key': str(len(table['columns'])),
'name': str(v.get('attrs', {}).get('standard_name', k)) + units
})

Expand Down
2 changes: 1 addition & 1 deletion test_manager/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ def generate_test(src_path, file, res_path, _unused):
parser.add_argument('-g', '--github', action='store_true')
args = parser.parse_args()
if args.github or args.expected or args.tests or args.test_profiles or args.expected_profiles:
pass #load_profiles_from_git()
load_profiles_from_git()
if args.tests or args.expected:
TEST_IDX = 0
TEST_DICT = {}
Expand Down

0 comments on commit 2806c1c

Please sign in to comment.