Skip to content

Commit

Permalink
Address feedback
Browse files Browse the repository at this point in the history
- Get rid of CSS font-stack for code
- Change around wording of module-level docstring for func.py
- Change enumeration to enum
  • Loading branch information
OrangeChannel authored and kageru committed Aug 13, 2020
1 parent 0791750 commit 6516089
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 7 deletions.
4 changes: 0 additions & 4 deletions docs/_static/css/theme_overrides.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,6 @@
}
}

.rst-content code,.rst-content tt {
font-family: SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace
}

.rst-content code.literal {
color: #595959
}
Expand Down
2 changes: 1 addition & 1 deletion vsutil/func.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""
Non-vapoursynth related functions and decorators.
Decorators and non-VapourSynth-related functions.
"""
__all__ = [
# decorators
Expand Down
4 changes: 2 additions & 2 deletions vsutil/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

class Dither(str, Enum):
"""
Enumeration for `zimg_dither_type_e`.
Enum for `zimg_dither_type_e`.
"""
NONE = 'none'
"""Round to nearest."""
Expand All @@ -26,7 +26,7 @@ class Dither(str, Enum):

class Range(int, Enum):
"""
Enumeration for `zimg_pixel_range_e`.
Enum for `zimg_pixel_range_e`.
"""
LIMITED = 0
"""Studio (TV) legal range, 16-235 in 8 bits."""
Expand Down

0 comments on commit 6516089

Please sign in to comment.