Skip to content

Commit 5d8b40d

Browse files
author
d.kovalenko
committed
formatting
1 parent e2dfddb commit 5d8b40d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/implementation/v00/configuration_base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3964,7 +3964,7 @@ def Helper__DoWork__Stage04__OpenNewFilesToWrite(
39643964
assert fileCtx.FileData.m_Status == PgCfgModel__FileStatus.IS_NEW
39653965
assert fileCtx.File is None
39663966

3967-
fileCtx.File = ctx.Cfg.m_Data.OsOps.CreateFile(fileCtx.FileData.m_Path) # raise
3967+
fileCtx.File = ctx.Cfg.m_Data.OsOps.CreateFile(fileCtx.FileData.m_Path) # raise
39683968

39693969
assert fileCtx.File is not None
39703970
assert isinstance(fileCtx.File, ConfigurationOsFile)

tests/TestServices.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def Helper__GetCurTestTmpDir(function: pytest.Function) -> str:
5151
"Root dir {0} is not found in testPath {1}.".format(rootDir, testPath)
5252
)
5353

54-
testPath2 = testPath[len(rootDir) + 1 :]
54+
testPath2 = testPath[len(rootDir) + 1:]
5555

5656
result = os.path.join(rootTmpDir, testPath2)
5757

0 commit comments

Comments
 (0)