Skip to content

Commit e4a99ba

Browse files
committed
running black and flake8
1 parent 0095001 commit e4a99ba

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

tests/test_cli.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -522,7 +522,7 @@ def test_import_tmuxinator(cli_args, inputs, tmpdir, monkeypatch):
522522
(['freeze'], ['\n', 'y\n', './exists.yaml\n', './la.yaml\n', 'y\n']), # Exists
523523
( # Create a new one
524524
['freeze', 'mysession', '--force'],
525-
['\n', 'y\n', './la.yaml\n', 'y\n']
525+
['\n', 'y\n', './la.yaml\n', 'y\n'],
526526
),
527527
( # Imply current session if not entered
528528
['freeze', '--force'],
@@ -554,7 +554,7 @@ def test_freeze(server, cli_args, inputs, tmpdir, monkeypatch):
554554
),
555555
( # Imply current session if not entered
556556
['freeze', '--force'],
557-
['\n', 'y\n', './exists.yaml\n', 'y\n']
557+
['\n', 'y\n', './exists.yaml\n', 'y\n'],
558558
),
559559
],
560560
)

tmuxp/workspacebuilder.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ def build(self, session=None):
140140
if 'start_directory' in self.sconf:
141141
session = self.server.new_session(
142142
session_name=self.sconf['session_name'],
143-
start_directory=self.sconf['start_directory']
143+
start_directory=self.sconf['start_directory'],
144144
)
145145
else:
146146
session = self.server.new_session(

0 commit comments

Comments
 (0)