Skip to content

Commit 52e7c43

Browse files
committed
Format
1 parent eb3f7e6 commit 52e7c43

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

example_python/setup.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,6 @@
3232
license='BSD-3-Clause',
3333
tests_require=['pytest'],
3434
entry_points={
35-
'console_scripts': [
36-
'test_node = examples.minimal_publisher:main'
37-
],
35+
'console_scripts': ['test_node = examples.minimal_publisher:main'],
3836
},
3937
)

example_python/test/test_parameters.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1+
+# -*- coding: utf-8 -*-
12
import generate_parameter_module_example
3+
24
print(f'Imported file from: {generate_parameter_module_example.__file__}')
35
print('OK 1')
46

generate_parameter_library_py/generate_parameter_library_py/generate_python_module.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ def run(output_file, yaml_file, validation_module=''):
5252
init_file = os.path.join(os.path.dirname(output_file), '__init__.py')
5353
open(init_file, 'a').close()
5454

55+
5556
def parse_args():
5657
parser = argparse.ArgumentParser()
5758
parser.add_argument('output_python_module_file')

0 commit comments

Comments
 (0)