Skip to content

Commit

Permalink
Updated the ignore checks in flake8 config files
Browse files Browse the repository at this point in the history
Updated the ignore checks in flake8 config files
  • Loading branch information
NaveenKinnal committed Dec 6, 2022
1 parent ad576bd commit dcc0026
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion client/setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ license_files = LICENSE
universal = false

[flake8]
extend-ignore =
ignore =
# space before : (needed for how black formats slicing)
E203,
# line too long
Expand Down
2 changes: 1 addition & 1 deletion components/lab-job-scheduler/backend/setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ license_files = LICENSE
universal = false

[flake8]
extend-ignore =
ignore =
# space before : (needed for how black formats slicing)
E203,
# line too long
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@ class ScheduledJob(ScheduledJobInput):
example="2022-09-29T11:39:52.441287",
)
last_run: str = Field(
None,
...,
description="The last time the job was run in ISO format.",
example="2022-09-29T11:39:52.441287",
)
next_run: str = Field(
None,
...,
description="The next time the job will be run in ISO format.",
example="2022-09-29T11:39:52.441287",
)
2 changes: 1 addition & 1 deletion components/lab-mlflow-manager/backend/setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ license_files = LICENSE
universal = false

[flake8]
extend-ignore =
ignore =
# space before : (needed for how black formats slicing)
E203,
# line too long
Expand Down
2 changes: 1 addition & 1 deletion components/lab-workspace-manager/backend/setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ license_files = LICENSE
universal = false

[flake8]
extend-ignore =
ignore =
# space before : (needed for how black formats slicing)
E203,
# line too long
Expand Down
2 changes: 1 addition & 1 deletion components/template/backend/setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ license_files = LICENSE
universal = false

[flake8]
extend-ignore =
ignore =
# space before : (needed for how black formats slicing)
E203,
# line too long
Expand Down

0 comments on commit dcc0026

Please sign in to comment.