Skip to content

Commit

Permalink
black
Browse files Browse the repository at this point in the history
  • Loading branch information
sdc50 committed Sep 26, 2023
1 parent 6d0813c commit 68c213c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tethys_apps/templatetags/app_theme.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def lighten(hex_color, percentage):
)

# Extract the hex strings for the RGB components
rgb_hex = [hex_color[x:x + 2] for x in [1, 3, 5]]
rgb_hex = [hex_color[x : x + 2] for x in [1, 3, 5]]

# Convert RGB hex strings to integer numbers
rgb_int = [int(x, 16) for x in rgb_hex]
Expand Down
2 changes: 1 addition & 1 deletion tethys_layouts/views/map_layout.py
Original file line number Diff line number Diff line change
Expand Up @@ -811,7 +811,7 @@ def convert_geojson_to_shapefile(self, request, *args, **kwargs):
# pip
pip install pyshp
**Don't Forget**: If you end up using this method in your app, add `pyshp` as a requirement to your `install.yml`.
Args:
Expand Down

0 comments on commit 68c213c

Please sign in to comment.