Skip to content

Commit 4971bc3

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 5c0bd4a commit 4971bc3

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

docs/development.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ This section covers advanced implementation details for managing the operation o
77
Environment Setup
88
------------
99

10-
To setup a development environment, use ``pip install -e . --group all`` to install all dependencies including those for development and testing.
10+
To setup a development environment, use ``pip install -e . --group all`` to install all dependencies including those for development and testing.
1111
This command will install all packages required for the flask app, database management, and dev testing.
1212

13-
If you would like to run the flask app in debug mode, set the environment variable ``NWB_BENCHMARKS_DEBUG=1``.
13+
If you would like to run the flask app in debug mode, set the environment variable ``NWB_BENCHMARKS_DEBUG=1``.
1414

1515

1616
Coding Style

src/nwb_benchmarks/_flask/_app.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ def add_and_commit(self, message: str) -> typing.Literal[523] | None:
176176
if self.debug_mode:
177177
print("Debug mode enabled, skipping git commit.")
178178
return None
179-
179+
180180
command = f"git add . && git commit -m '{message}'"
181181
result = subprocess.run(
182182
args=command,
@@ -194,7 +194,7 @@ def push(self):
194194
if self.debug_mode:
195195
print("Debug mode enabled, skipping git push.")
196196
return None
197-
197+
198198
command = "git push"
199199
cwd = self.repo_path
200200
result = subprocess.run(

0 commit comments

Comments
 (0)