Skip to content

Commit

Permalink
Applied precommit
Browse files Browse the repository at this point in the history
Signed-off-by: Jakub Delicat <[email protected]>
  • Loading branch information
delihus committed Jul 26, 2024
1 parent 0396782 commit cfbf72a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 9 deletions.
5 changes: 1 addition & 4 deletions rosbot_controller/launch/controller.launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,10 +120,7 @@ def generate_launch_description():

namespaced_robot_controllers_config = ReplaceString(
source_file=robot_controllers_config,
replacements={
"<robot_namespace>": namespace,
"//": "/"
},
replacements={"<robot_namespace>": namespace, "//": "/"},
)

control_node = Node(
Expand Down
11 changes: 6 additions & 5 deletions rosbot_utils/rosbot_utils/flash_firmware.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,15 @@
# See the License for the specific language governing permissions and
# limitations under the License.

import subprocess
import os
import sys
import argparse
import signal
import glob
import requests
import os
import signal
import subprocess
import sys

import ament_index_python.packages
import requests

# Global variable to hold the subprocess reference
subproc = None
Expand Down

0 comments on commit cfbf72a

Please sign in to comment.