Skip to content

Commit 3249468

Browse files
REQREPLY-221: Fix format
1 parent a07a0f5 commit 3249468

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

examples/connext_dds/remote_procedure_call/py/inventory_client.py

+8-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@
1717
from Inventory import Item, InventoryService, UnknownItemError
1818

1919

20-
class InventoryClient(InventoryService, rpc.ClientBase): ...
20+
class InventoryClient(InventoryService, rpc.ClientBase):
21+
...
2122

2223

2324
async def run_client(args):
@@ -49,7 +50,12 @@ async def run_client(args):
4950
def main():
5051
parser = argparse.ArgumentParser(description="Inventory client")
5152
group = parser.add_mutually_exclusive_group(required=True)
52-
group.add_argument("-r", "--remove", type=str, help="Remove item from inventory")
53+
group.add_argument(
54+
"-r",
55+
"--remove",
56+
type=str,
57+
help="Remove item from inventory"
58+
)
5359
group.add_argument("-a", "--add", type=str, help="Add item to inventory")
5460

5561
parser.add_argument(

0 commit comments

Comments
 (0)