Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
pitivi
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
199
Issues
199
List
Boards
Labels
Service Desk
Milestones
Merge Requests
27
Merge Requests
27
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
GNOME
pitivi
Commits
2f304d3f
Commit
2f304d3f
authored
Jan 06, 2020
by
Alexandru Băluț
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove unneeded pylint missing-docstring disabling
Our docstrings are checked by pydocstyle not pylint.
parent
0f05b418
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
5 additions
and
11 deletions
+5
-11
build/flatpak/pitivi-flatpak
build/flatpak/pitivi-flatpak
+1
-1
plugins/console/consolebuffer.py
plugins/console/consolebuffer.py
+0
-2
plugins/console/utils.py
plugins/console/utils.py
+0
-2
tests/ptv_testsuite.py
tests/ptv_testsuite.py
+0
-1
tests/test_application.py
tests/test_application.py
+1
-1
tests/test_misc.py
tests/test_misc.py
+1
-1
tests/test_render.py
tests/test_render.py
+1
-1
tests/test_settings.py
tests/test_settings.py
+1
-1
tests/test_system.py
tests/test_system.py
+0
-1
No files found.
build/flatpak/pitivi-flatpak
View file @
2f304d3f
...
...
@@ -14,7 +14,7 @@
# Lesser General Public License for more details.
# You should have received a copy of the GNU Lesser General Public
# License along with this program; if not, see <http://www.gnu.org/licenses/>.
# pylint: disable=
missing-docstring,
invalid-name
# pylint: disable=invalid-name
import
argparse
import
configparser
import
json
...
...
plugins/console/consolebuffer.py
View file @
2f304d3f
# -*- coding: utf-8 -*-
# pylint: disable=missing-docstring
# -*- coding: utf-8 -*-
# Pitivi Developer Console
# Copyright (c) 2017-2018, Fabian Orccon <cfoch.fabian@gmail.com>
#
...
...
plugins/console/utils.py
View file @
2f304d3f
# -*- coding: utf-8 -*-
# pylint: disable=missing-docstring
# -*- coding: utf-8 -*-
# Pitivi Developer Console
# Copyright (c) 2017-2018, Fabian Orccon <cfoch.fabian@gmail.com>
#
...
...
tests/ptv_testsuite.py
View file @
2f304d3f
...
...
@@ -14,7 +14,6 @@
#
# You should have received a copy of the GNU Lesser General Public
# License along with this program; if not, see <http://www.gnu.org/licenses/>.
# pylint: disable=missing-docstring,invalid-name
"""GstValidateLauncher testsuite to run our unit tests."""
import
os
import
sys
...
...
tests/test_application.py
View file @
2f304d3f
...
...
@@ -15,7 +15,7 @@
# You should have received a copy of the GNU Lesser General Public
# License along with this program; if not, see <http://www.gnu.org/licenses/>.
"""Tests for the application module."""
# pylint: disable=
missing-docstring,
protected-access,no-self-use
# pylint: disable=protected-access,no-self-use
import
tempfile
from
unittest
import
mock
...
...
tests/test_misc.py
View file @
2f304d3f
...
...
@@ -63,7 +63,7 @@ class PathWalkerTest(common.TestCase):
mainloop
=
common
.
create_main_loop
()
received_uris
=
[]
def
done_cb
(
uris
):
# pylint: disable=missing-docstring
def
done_cb
(
uris
):
received_uris
.
extend
(
uris
)
mainloop
.
quit
()
walker
=
PathWalker
(
uris
,
done_cb
)
...
...
tests/test_render.py
View file @
2f304d3f
...
...
@@ -95,7 +95,7 @@ class TestRender(BaseTestMediaLibrary):
mainloop
=
common
.
create_main_loop
()
def
asset_added_cb
(
project
,
asset
):
# pylint: disable=missing-docstring
def
asset_added_cb
(
project
,
asset
):
mainloop
.
quit
()
project
.
connect
(
"asset-added"
,
asset_added_cb
)
...
...
tests/test_settings.py
View file @
2f304d3f
...
...
@@ -15,7 +15,7 @@
# You should have received a copy of the GNU Lesser General Public
# License along with this program; if not, see <http://www.gnu.org/licenses/>.
"""Tests for the pitivi.settings module."""
# pylint: disable=
missing-docstring,
no-self-use
# pylint: disable=no-self-use
import
os
import
tempfile
from
unittest
import
mock
...
...
tests/test_system.py
View file @
2f304d3f
...
...
@@ -15,7 +15,6 @@
# You should have received a copy of the GNU Lesser General Public
# License along with this program; if not, see <http://www.gnu.org/licenses/>.
"""Tests for the utils.system module."""
# pylint: disable=missing-docstring
from
unittest
import
TestCase
from
pitivi.utils.system
import
System
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment