일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- python all testcode
- 프로그래머스
- classproperty
- docker
- 우아한 테크코스 2차 합격
- classmethod
- 재귀함수가 뭔가요
- python
- springboot 3.0.0
- github
- Spring
- METACLASS
- EC2
- 2차 코딩테스트
- depends_on
- OperationalError
- TypeError: 'property' object is not iterable
- Django
- docker-compose
- DB
- 갓재석
- AWS
- 우아한테크코스 2차
- javascript
- MySQL server on 'db' (115)
- S3
- AWS S3
- depends
- 코딩테스트
- github skyline
Archives
목록classproperty (1)
hanbin.dev
TypeError: 'property' object is not iterable
import peewee class MySQLModel(peewee.Model): @property @classmethod def unique_fields(cls) -> list: for field_name in cls._meta.fields.keys(): field = getattr(cls, field_name) if field.unique == True or field.primary_key == True: yield field peewee 모델의 unique한 field의 이름을 iterable한 객체로 반환하는 property 함수를 만들었다. key in [field.name for field in MySQLModel.unique_fields] 그런데 위와 같이 사용 할 때 TypeError: &..
Python
2021. 6. 2. 13:38