We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2a6985 commit 0701c73Copy full SHA for 0701c73
stage5.3_fuller_application/pycasa/ui/image_folder_view.py
@@ -83,7 +83,6 @@ def traits_view(self):
83
enabled_when="len(model.data) > 0"),
84
Spring(),
85
),
86
- resizable=True, height=800
87
)
88
return view
89
@@ -134,7 +133,7 @@ def _all_years_default(self):
134
133
def parse_year(x):
135
return x.split(":")[0] if isinstance(x, str) else "unknown"
136
137
- self.all_data[YEAR_KEY] = self.all_data['DateTime'].apply(parse_year)
+ self.all_data[YEAR_KEY] = self.all_data[DATETIME_COL].apply(parse_year)
138
return sorted(self.all_data[YEAR_KEY].unique().tolist())
139
140
0 commit comments