mirror of
https://github.com/django-helpdesk/django-helpdesk.git
synced 2025-05-30 22:45:48 +02:00
Fix linting errors after removing ignored settings
This commit is contained in:
parent
1ee64a1911
commit
c46e8a5454
@ -12,7 +12,7 @@ def main():
|
||||
# issue is really that Django is missing to avoid masking other
|
||||
# exceptions on Python 2.
|
||||
try:
|
||||
import django
|
||||
import django # noqa
|
||||
except ImportError:
|
||||
raise ImportError(
|
||||
"Couldn't import Django. Are you sure it's installed and "
|
||||
|
@ -12,7 +12,7 @@ def main():
|
||||
# issue is really that Django is missing to avoid masking other
|
||||
# exceptions on Python 2.
|
||||
try:
|
||||
import django
|
||||
import django # noqa
|
||||
except ImportError:
|
||||
raise ImportError(
|
||||
"Couldn't import Django. Are you sure it's installed and "
|
||||
|
43
docs/conf.py
43
docs/conf.py
@ -11,9 +11,6 @@
|
||||
# All configuration values have a default; values that are commented out
|
||||
# serve to show the default.
|
||||
|
||||
import os
|
||||
import sys
|
||||
|
||||
|
||||
# If extensions (or modules to document with autodoc) are in another directory,
|
||||
# add these directories to sys.path here. If the directory is relative to the
|
||||
@ -30,29 +27,29 @@ import sys
|
||||
extensions = []
|
||||
|
||||
# Add any paths that contain templates here, relative to this directory.
|
||||
templates_path = ['_templates']
|
||||
templates_path = ["_templates"]
|
||||
|
||||
# The suffix of source filenames.
|
||||
source_suffix = '.rst'
|
||||
source_suffix = ".rst"
|
||||
|
||||
# The encoding of source files.
|
||||
# source_encoding = 'utf-8-sig'
|
||||
|
||||
# The master toctree document.
|
||||
master_doc = 'index'
|
||||
master_doc = "index"
|
||||
|
||||
# General information about the project.
|
||||
project = u'django-helpdesk'
|
||||
copyright = u'2011-2023, Django-helpdesk Contributors'
|
||||
project = "django-helpdesk"
|
||||
copyright = "2011-2023, Django-helpdesk Contributors"
|
||||
|
||||
# The version info for the project you're documenting, acts as replacement for
|
||||
# |version| and |release|, also used in various other places throughout the
|
||||
# built documents.
|
||||
#
|
||||
# The short X.Y version.
|
||||
version = '1.x'
|
||||
version = "1.x"
|
||||
# The full version, including alpha/beta/rc tags.
|
||||
release = '1.x'
|
||||
release = "1.x"
|
||||
|
||||
# The language for content autogenerated by Sphinx. Refer to documentation
|
||||
# for a list of supported languages.
|
||||
@ -83,7 +80,7 @@ exclude_patterns = []
|
||||
# show_authors = False
|
||||
|
||||
# The name of the Pygments (syntax highlighting) style to use.
|
||||
pygments_style = 'sphinx'
|
||||
pygments_style = "sphinx"
|
||||
|
||||
# A list of ignored prefixes for module index sorting.
|
||||
# modindex_common_prefix = []
|
||||
@ -93,7 +90,7 @@ pygments_style = 'sphinx'
|
||||
|
||||
# The theme to use for HTML and HTML Help pages. See the documentation for
|
||||
# a list of builtin themes.
|
||||
html_theme = 'default'
|
||||
html_theme = "default"
|
||||
|
||||
# Theme options are theme-specific and customize the look and feel of a theme
|
||||
# further. For a list of options available for each theme, see the
|
||||
@ -122,7 +119,7 @@ html_theme = 'default'
|
||||
# Add any paths that contain custom static files (such as style sheets) here,
|
||||
# relative to this directory. They are copied after the builtin static files,
|
||||
# so a file named "default.css" will overwrite the builtin "default.css".
|
||||
html_static_path = ['_static']
|
||||
html_static_path = ["_static"]
|
||||
|
||||
# If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
|
||||
# using the given strftime format.
|
||||
@ -166,7 +163,7 @@ html_static_path = ['_static']
|
||||
# html_file_suffix = None
|
||||
|
||||
# Output file base name for HTML help builder.
|
||||
htmlhelp_basename = 'django-helpdeskdoc'
|
||||
htmlhelp_basename = "django-helpdeskdoc"
|
||||
|
||||
|
||||
# -- Options for LaTeX output --------------------------------------------
|
||||
@ -180,8 +177,13 @@ htmlhelp_basename = 'django-helpdeskdoc'
|
||||
# Grouping the document tree into LaTeX files. List of tuples
|
||||
# (source start file, target name, title, author, documentclass [howto/manual]).
|
||||
latex_documents = [
|
||||
('index', 'django-helpdesk.tex', u'django-helpdesk Documentation',
|
||||
u'django-helpdesk Contributors', 'manual'),
|
||||
(
|
||||
"index",
|
||||
"django-helpdesk.tex",
|
||||
"django-helpdesk Documentation",
|
||||
"django-helpdesk Contributors",
|
||||
"manual",
|
||||
),
|
||||
]
|
||||
|
||||
# The name of an image file (relative to this directory) to place at the top of
|
||||
@ -213,6 +215,11 @@ latex_documents = [
|
||||
# One entry per manual page. List of tuples
|
||||
# (source start file, name, description, authors, manual section).
|
||||
man_pages = [
|
||||
('index', 'django-helpdesk', u'django-helpdesk Documentation',
|
||||
[u'django-helpdesk Contributors'], 1)
|
||||
(
|
||||
"index",
|
||||
"django-helpdesk",
|
||||
"django-helpdesk Documentation",
|
||||
["django-helpdesk Contributors"],
|
||||
1,
|
||||
)
|
||||
]
|
||||
|
@ -37,7 +37,8 @@ def populate_usersettings(apps, schema_editor):
|
||||
UserSettings.objects.create(user=u, settings_pickled=settings_pickled)
|
||||
|
||||
|
||||
noop = lambda *args, **kwargs: None
|
||||
def noop(*args, **kwargs):
|
||||
return None
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
@ -1 +1 @@
|
||||
from .settings import *
|
||||
from .settings import * # noqa
|
||||
|
@ -12,7 +12,7 @@ def main():
|
||||
# issue is really that Django is missing to avoid masking other
|
||||
# exceptions on Python 2.
|
||||
try:
|
||||
import django
|
||||
import django # noqa
|
||||
except ImportError:
|
||||
raise ImportError(
|
||||
"Couldn't import Django. Are you sure it's installed and "
|
||||
|
Loading…
x
Reference in New Issue
Block a user