tulir/mautrix-telegram

View on GitHub
mautrix_telegram/scripts/unicodemojipack/__main__.py

Summary

Maintainability
B
4 hrs
Test Coverage

File __main__.py has 331 lines of code (exceeds 250 allowed). Consider refactoring.
Open

# mautrix-telegram - A Matrix-Telegram puppeting bridge
# Copyright (C) 2022 Tulir Asokan
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
Severity: Minor
Found in mautrix_telegram/scripts/unicodemojipack/__main__.py - About 3 hrs to fix

    Function parse_emoji_data has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
    Open

    def parse_emoji_data(tone: dict[str, Any], emoji: dict[str, Any]) -> Emoji:
        hex = (tone["non_qualified"] or tone["unified"]).replace("-FE0F", "")
        filename_hex = hex.replace("-", "_").lower()
        filename = f"svg/emoji_u{filename_hex}.svg"
        if emoji["category"] == "Flags" and emoji["subcategory"] in (
    Severity: Minor
    Found in mautrix_telegram/scripts/unicodemojipack/__main__.py - About 45 mins to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    There are no issues that match your filters.

    Category
    Status