Johnch18

Avatar
  • Total activity 2
  • Last activity
  • Member since
  • Following 0 users
  • Followed by 0 users
  • Votes 0
  • Subscriptions 1
  • Johnch18 created a post,
    Answered

    PyCharm not detecting errors raised by metaclasses

    # I have roughly the following code:import abcclass Metaclass(abc.ABCMeta): def __new__(mcs, *args, **kwargs): new = super().__new__(mcs, *args, **kwargs) if not hasattr(new, "foo"...