Skip to content

Commit 07a0ebf

Browse files
Merge pull request #30 from sightmachine/get_cycles_fix
Fixes get cycles
2 parents c1d22e2 + e971249 commit 07a0ebf

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

smsdk/client_v0.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -290,9 +290,7 @@ def inner(self, normalize=True, clean_strings_in=True, clean_strings_out=True, *
290290
if not '_only' in kwargs:
291291
print('_only not specified. Selecting first 50 fields.')
292292
only_names = schema['name'].tolist()[:50]
293-
toplevel = ['machine__source', 'starttime', 'endtime', 'total', 'record_time', 'shift', 'output']
294-
295-
kwargs['_only'] = only_names + toplevel
293+
kwargs['_only'] = only_names
296294
else:
297295
if ('Machine' not in kwargs['_only']) and ('machine__source' not in kwargs['_only']):
298296
print("Adding Machine to _only")

0 commit comments

Comments
 (0)